Screenshots
Example Usage
# Clone the repository git clone https://github.com/TinyActive/fluxion.git cd fluxion # Edit docker-compose.yml to update configuration # IMPORTANT: Change the following before running: # 1. Database passwords (MYSQL_ROOT_PASSWORD, MYSQL_PASSWORD, DB_PASSWORD) # 2. SECRET_KEY for JWT tokens # 3. CORS_ORIGINS to match your domain/IP # 4. VITE_API_BASE_URL in frontend build args # 5. TELEGRAM_BOT_TOKEN (optional) # Start all services docker-compose up -d # Wait for services to be healthy (may take 1-2 minutes) docker-compose ps # Run database migrations docker-compose exec backend alembic upgrade head # Create initial admin user (optional) docker-compose exec backend python -m app.initial_data