Installation
Sections
Getting Started
Installation
Installation with Docker Compose
Prerequisites
- Docker 24+ and Docker Compose v2
- 4 GB RAM minimum (8 GB recommended)
- 20 GB SSD disk space
Installation
git clone https://github.com/altiusone/altiusone.git
cd altiusone
cp .env.example .env
Configuring the .env file
Edit the .env file with your settings:
POSTGRES_DB=altiusone
POSTGRES_USER=altiusone
POSTGRES_PASSWORD=your_secure_password
DJANGO_SECRET_KEY=your_secret_key
DJANGO_ALLOWED_HOSTS=localhost,127.0.0.1,your-domain.ch
MINIO_ROOT_USER=minioadmin
MINIO_ROOT_PASSWORD=your_minio_password
REDIS_URL=redis://redis:6379/0
Launch
docker compose up -d
docker compose exec django python manage.py migrate
docker compose exec django python manage.py createsuperuser
docker compose exec django python manage.py init_permissions
docker compose exec django python manage.py init_ontologie
Deployed services
| Service | Port | URL |
|---|---|---|
| Application | 8080 | http://localhost:8080 |
| MinIO Console | 9001 | http://localhost:9001 |
| Nextcloud | 8888 | http://localhost:8888 |
Go to http://localhost:8080 and log in.