This website was used to throw a Charity Casino Night Party on 8/10/2023
Running docker-compose build && docker-compose up
should do most of the setup
- Hit
http://HOST/api/people
- Look at
docker-compose logs backend --tail 100
- Copy the authorization url (might look like
https://accounts.google.com/o/oauth2/auth/oauthchooseaccount?REDACTED
) - Log in with the right account (might be
[email protected]
) - Copy the URL that you're redirected to (might look like
http://localhost:40490/?REDACTED&scope=https://www.googleapis.com/auth/spreadsheets
) - "SSH" into the backend container:
docker-compose exec backend sh
- Hit the URL from 5:
curl 'http://localhost:40490/?REDACTED&scope=https://www.googleapis.com/auth/spreadsheets'
- Profit
Because it is expensive to maintain a docker-compose fleet to just serve a static page, I've downloaded the page with Chrome, then served it statically. The current setup of casino.marktai.com
is just serving the static directory from ./static/
in this repo.