Skip to content

Commit

Permalink
fix: Fixes before publishing to GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
devitq committed Apr 5, 2024
1 parent df6b6e8 commit 91e2963
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 30 deletions.
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,3 @@ docker compose pull
```bash
docker compose up -d --build
```

## 📝 Notes

I thought up the architecture of the project myself, I won't mind feedback on it)
18 changes: 0 additions & 18 deletions check.sh

This file was deleted.

14 changes: 7 additions & 7 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: "3"
services:
postgres:
image: postgres:16.2-alpine
container_name: postgres
container_name: travel_agent-postgres
healthcheck:
test: pg_isready -U postgres -h localhost
interval: 5s
Expand All @@ -21,7 +21,7 @@ services:

redis:
image: redis:7.2-alpine
container_name: redis
container_name: travel_agent-redis
healthcheck:
test: ["CMD", "redis-cli", "--raw", "incr", "ping"]
ports:
Expand All @@ -31,24 +31,24 @@ services:

app:
build: .
container_name: app
container_name: travel_agent-app
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_healthy
environment:
BOT_TOKEN: ${BOT_TOKEN:-6943803094:AAFxMjuiaqLlQbITUOVPlKx6SKIofKrThwk}
BOT_TOKEN: ${BOT_TOKEN}
REDIS_URL: redis://redis:${REDIS_PORT:-6379}/
SQLALCHEMY_DATABASE_URI: postgresql://${POSTGRES_USER:-postgres}:${POSTGRES_PASSWORD:-postgres}@postgres:${POSTGRES_PORT:-5432}/${POSTGRES_DB:-postgres}
OPENTRIPMAP_API_KEY: ${OPENTRIPMAP_API_KEY:-5ae2e3f221c38a28845f05b65004e18feef4a0f1a06c9554424e9f14}
OPENWEATHERMAP_API_KEY: ${OPENWEATHERMAP_API_KEY:-3673b2ff64c097b3f79fc93e429e7ed1}
OPENTRIPMAP_API_KEY: ${OPENTRIPMAP_API_KEY}
OPENWEATHERMAP_API_KEY: ${OPENWEATHERMAP_API_KEY}
entrypoint: ["bash", "-c"]
command: ["alembic -c app/alembic.ini upgrade head && python -m app"]

pgadmin:
image: dpage/pgadmin4:8.4
container_name: pgadmin
container_name: travel_agent-pgadmin
depends_on:
postgres:
condition: service_healthy
Expand Down
2 changes: 1 addition & 1 deletion template.env
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# For app

BOT_TOKEN = <your_bot_token> # default: 6943803094:AAFxMjuiaqLlQbITUOVPlKx6SKIofKrThwk
BOT_TOKEN = <your_bot_token> # get from https://t.me/BotFather
SQLALCHEMY_DATABASE_URI = <database_uri> # no need to specify if docker is used
REDIS_URL = <redis_url> # no need to specify if docker is used
OPENTRIPMAP_API_KEY = <api_key> # get it from https://dev.opentripmap.org/
Expand Down

0 comments on commit 91e2963

Please sign in to comment.