- Create Dev SSL Certs
- Create Prod SSL Certs
- Linting
- Production Deployments
- SMTP Configuration
- Software Requirements
yarn start
Default config values are found in server/configs/configSettings.js.
Create a custom config.js
in server/configs/
to change from the default 'production' to 'development' and use https so long as there is a provided local SSL cert in conf/
.
module.exports = {
env: 'development',
protocol: 'https',
port: 443,
}
You can also use Node.js environment variables:
HOSTNAME
MAIL_FROM
MAIL_SEND_PATH
NODE_ENV
PORT
PROTOCOL
PROXY_HOSTNAME
PROXY_PORT
SMTP_CREDENTIALS
TESTS_PATH