Compare commits

...

2 Commits

3 changed files with 6 additions and 2 deletions

View File

@ -53,7 +53,7 @@ Perform initial database migration. This is for automatically setting up the
database schema for the first time:
```sh
docker exec -it backend-flask-production bash
docker exec -it backend-production bash
flask db upgrade
exit
```

View File

@ -10,6 +10,7 @@ from sqlalchemy_utc import UtcDateTime
from discord_webhook import DiscordWebhook
import app_db
import spec
import os
class Event(app_db.BaseModel):
@ -101,6 +102,8 @@ class Event(app_db.BaseModel):
if ringers_needed > 0:
ringers_needed_msg = f" **({ringers_needed} ringer(s) needed)**"
domain = os.environ.get("DOMAIN", "availabili.tf")
return "\n".join([
f"# {self.name}",
"",
@ -111,7 +114,7 @@ class Event(app_db.BaseModel):
f"Max bipartite matching size: {matchings}" + ringers_needed_msg,
"",
"[Confirm attendance here]" +
f"(https://availabili.tf/team/id/{self.team.id}/events/{self.id})",
f"(https://{domain}/team/id/{self.team.id}/events/{self.id})",
])
def get_or_create_webhook(self):

View File

@ -35,6 +35,7 @@ services:
- FLASK_CELERY_BROKER_URL=redis://redis:6379/0
- FLASK_CELERY_RESULT_BACKEND=redis://redis:6379/0
- DATABASE_URI=postgresql+psycopg://postgres:password@db:5432/availabilitf
- DOMAIN=availabili.tf.sandvich.xyz
depends_on:
- redis
- db