Add edit message

This commit is contained in:
2026-01-24 13:20:45 +03:00
parent a690116399
commit 8c0c063bac
17 changed files with 1237 additions and 112 deletions
+5 -5
View File
@@ -97,8 +97,8 @@ pip install -e .
# Или используя poetry
poetry install
# Создайте .env файл
cat > .env << EOF
# Создайте .env.prod файл
cat > .env.prod << EOF
DATABASE_URL=postgresql+asyncpg://user:password@localhost:5432/aether
REDIS_URL=redis://localhost:6379
SECRET_KEY=your-secret-key-here
@@ -130,8 +130,8 @@ cd frontend
# Установите зависимости
npm install
# Создайте .env файл
echo "VITE_API_URL=http://localhost:8000" > .env
# Создайте .env.prod файл
echo "VITE_API_URL=http://localhost:8000" > .env.prod
# Запустите dev сервер
npm run dev
@@ -279,7 +279,7 @@ pytest tests/ -v
docker build -t aether-backend .
# Запуск контейнера
docker run -p 8000:8000 --env-file .env aether-backend
docker run -p 8000:8000 --env-file .env.prod aether-backend
```
### Frontend