lol
 
 
 
 
 
 
Go to file
John Montagu, the 4th Earl of Sandvich 8a00c53479
Add team integration endpoints
- Add new endpoints for managing team integrations:
  - GET /id/<team_id>/integrations
  - POST /id/<team_id>/integrations/<integration_type>
  - DELETE /id/<team_id>/integrations/<integration_id>
  - PATCH /id/<team_id>/integrations/<integration_id>
- Introduce schemas for TeamIntegration and TeamDiscordIntegration
- Update models to include nullable webhook_url
2024-11-18 18:59:39 -08:00
availabili.tf Improve team page usability 2024-11-18 11:59:13 -08:00
backend-flask Add team integration endpoints 2024-11-18 18:59:39 -08:00
nginx Update docker-compose for backend and reverse proxy 2024-11-07 18:13:12 -08:00
.gitignore Implement some basic features 2024-11-02 12:33:27 -07:00
README.md Add README.md 2024-11-06 20:56:55 -08:00
docker-compose.yml Update docker-compose for backend and reverse proxy 2024-11-07 18:13:12 -08:00

README.md

availabili.tf

Scheduling for TF2

Setup (dev)

Frontend

# first time setup
npm install

npm run dev

Backend

In virtual environment:

# first time setup
pip install -r requirements.txt
flask db migrate

flask run --debug

OpenAPI

The backend will automatically serve its OpenAPI-compliant spec at /apidoc/openapi.json which can also be viewed at /apidoc/redoc or /apidoc/swagger or /apidoc/scalar.

To generate the frontend client:

npx openapi --input 'http://localhost:5000/apidoc/openapi.json' --output src/client