https://github.com/brensch/tac
Tac tic toc toe
https://github.com/brensch/tac
Last synced: 5 months ago
JSON representation
Tac tic toc toe
- Host: GitHub
- URL: https://github.com/brensch/tac
- Owner: brensch
- License: mit
- Created: 2024-09-21T21:53:24.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-12T09:32:21.000Z (12 months ago)
- Last Synced: 2025-06-12T10:37:31.877Z (12 months ago)
- Language: HTML
- Size: 1.07 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
To run in dev:
```
firebase emulators:start
cd frontend && npm run dev
```
For updates to functions, you have to npm run build. It will trick you into thinking it reloaded on save but it didn't.
Setting up the cloud tasks
```
gcloud config set project tactic-toes
gcloud tasks queues create turn-expirations --location=us-central1
gcloud projects add-iam-policy-binding tactic-toes \
--member="serviceAccount:tactic-toes@appspot.gserviceaccount.com" \
--role="roles/datastore.user"
```