AGPL 3.0
Attribution-NonCommercial-ShareAlike 2.0 Generic (CC BY-NC-SA 2.0)
Thanks to https://github.com/greencoast-studios/cards-against-humanity-api for much of the card data.
- NodeJS
- Redis
- MongoDB
- Yarn (classic) https://classic.yarnpkg.com/lang/en/
- Create a file at
/config/keys.json
. This file must match the following schema:
[
{
"mongo": {
"local": "mongodb://your.url/letsplaywtf",
"prod": "mongodb://your.url/letsplaywtf",
"beta": "mongodb://your.url/letsplaywtf"
},
"redisHost": {
"local": "localhost",
"prod": "your.url",
"beta": "your.url"
},
"redisKey": "",
"redisPort": 1234,
"userSecretSalt": ""
}
]
Note: letsplaywtf
was the name of the site before I changed it to All Bad Cards :P
In the above example, the mongo
URLs are the connection strings to MongoDB in each given environment. Same with redisHost
for Redis.
redisKey
is the auth password for Redis. redisPort
is the externally accessible port for Redis.
userSecretSalt
is used to salt user cookies.
- Local
- From a command line, navigate to the root directory of the project.
- Run the command
yarn dev
, which will simultaneously start up the client dev server and nodemon for the server
- Build
- From a command line, navigate to the root directory of the project.
- Run the command
yarn build
(oryarn build-beta
for beta) - The output will be in the
/builds
folder, as a zip of the server and client.
- Hosted
- Extract a built zip
- From a command line, navigate to the extracted directory (the root of the build result)
- Run the command
yarn start
ornpm run start