- Create a
.env
filecp build/debug/server/.env.default build/debug/server/.env
- Download service-account-file.json
- Edit the
.env
file - Add login page
cp ./config.default.js ./public/javascripts/config.js
- Set Firebase configuration at
public/javascripts/config.js
- Run containers
make run
- Run migration
make migrate-up
- Open http://localhost:8888/
curl --location --request POST 'localhost:8888/authenticate' \
--form 'id_token={your_id_token}'
curl --location --request GET 'localhost:8888/v1/me' \
--header 'Authorization: Bearer {your_id_token}'