diff options
Diffstat (limited to '.env.example')
-rw-r--r-- | .env.example | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.env.example b/.env.example index 752fcad..ff29e4f 100644 --- a/.env.example +++ b/.env.example @@ -1,4 +1,9 @@ NODE_ID=aUniqueString +DATABASE_URL=ecto://chessh:password@database/chessh + +POSTGRES_USER=chessh +POSTGRES_PASSWORD=password +POSTGRES_DATABASE=chessh REACT_APP_GITHUB_OAUTH=https://github.com/login/oauth/authorize?client_id=CLIENT_ID_HERE&redirect_uri=http://127.0.0.1:3000/api/oauth/redirect CLIENT_REDIRECT_AFTER_OAUTH=http://127.0.0.1:3000/auth-successful @@ -12,3 +17,6 @@ JWT_SECRET=aVerySecretJwtSigningSecret SSH_PORT=42069 REACT_APP_SSH_SERVER=localhost REACT_APP_SSH_PORT=42069 + +REDIS_HOST=localhost +REDIS_PORT=6379 |