69a232d08a
- FastAPI: POST /api/v1/events, GET /health, JSON Schema validation - PostgreSQL models, Alembic migration, bootstrap API key - deploy/docker-compose.yml, .env.example - docs/install-ubuntu-24.04.md, updated work-plan (agents first)
11 lines
237 B
Markdown
11 lines
237 B
Markdown
# Deploy
|
|
|
|
```bash
|
|
cp .env.example .env
|
|
nano .env
|
|
docker compose up -d --build
|
|
docker compose run --rm migrate
|
|
```
|
|
|
|
Полная инструкция для Ubuntu 24.04: [../docs/install-ubuntu-24.04.md](../docs/install-ubuntu-24.04.md)
|