diff options
author | Logan Hunt <logan.hunt@usu.edu> | 2023-01-24 12:12:58 -0700 |
---|---|---|
committer | Logan Hunt <logan.hunt@usu.edu> | 2023-01-24 12:14:07 -0700 |
commit | ce06ddd669363651d335f5a4c05e1a347020a3c1 (patch) | |
tree | 74e60d55d9c7eaa42b269a6d59de43c86fdb9b77 /.env.example | |
parent | a634901317de06ca09f3d78b3d0205c4d19df0cf (diff) | |
download | chessh-ce06ddd669363651d335f5a4c05e1a347020a3c1.tar.gz chessh-ce06ddd669363651d335f5a4c05e1a347020a3c1.zip |
Redis time
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 |