A realtime multiplayer version of the boardgame Ricochet Robots
at master 19 lines 714 B view raw
1# Since the ".env" file is gitignored, you can use the ".env.example" file to 2# build a new ".env" file when you clone the repo. Keep this file up-to-date 3# when you add new variables to `.env`. 4 5# This file will be committed to version control, so make sure not to have any 6# secrets in it. If you are cloning this repo, create a copy of this file named 7# ".env" and populate it with your secrets. 8 9# When adding additional environment variables, the schema in "/src/env.js" 10# should be updated accordingly. 11 12# Drizzle 13DATABASE_URL="mysql://ricochet:ricochet@mysql:3306/ricochet" 14GMAIL_PASSWORD="" 15GMAIL_EMAIL="" 16NEXT_PUBLIC_WS_URL="ws://localhost:3001" 17# Example: 18# SERVERVAR="foo" 19# NEXT_PUBLIC_CLIENTVAR="bar"