This is a mono-repository containing all backends for the Ultimate TTT frontend.
- Follow the Supabase Local Development Guide: https://supabase.io/docs/guides/local-development
- Connect to the database (for example with DBeaver or BeeKeeper)
- Execute the script in database/database.sql
- Install the Azure Function Core Tools: https://github.com/Azure/azure-functions-core-tools
- In each function directory run:
mv src/local.settings.example.json src/local.settings.json mv .env.example .env
yarn
yarn db
, starts Supabaseyarn api
, starts all functions locally and watches for changesyarn start
ran in a specific function directory, starts an individual function app and watches for changes
- Create functions
- Integrate with frontend (separate route)
- Create CI scripts
- Combine online/offline in frontend
- Combine backend and frontend repo