cp env.example .env
nano .env
docker compose up --build
Запуск на: http://localhost:8080
python3 -m venv web-tasker-env
source web-tasker-env/bin/activate
pip install -r requirements.txt
export SECRET_KEY="your-secret-key-here"
python -m flask --app app run --debug
- Админ: admin@admin / admin
- URL: http://localhost:5000 (локально) или http://localhost:8080 (Docker)