···44### Get Started
55- Install Docker Compose if you do not already have it.
66- Set your environment variables in `.env`. This assumes your server only uses *one* domain.
77- - `LUMIX_ENV`: `dev` or `production`.
77+ - `APP_ENV`: `dev` or `production`.
88 - `CERT_DOMAIN`: Set this to your domain name.
99 - `CERT_EMAIL`: The email your TLS certficiate will be registered with.
1010- Create the file `web/node/keys.js`, and fill in your Google API Client ID and Client Secret in it. To get those:
···2424 ```
25252626### Usage
2727-- Register TLS certificate: `docker-compose up letsencrypt-init`.
2828-- Renew TLS certificate: `docker-compose up letsencrypt-renew`.
2929-- Start server: `docker-compose up web`.
2727+- Register TLS certificate: `docker-compose -f docker-compose-extras.yml up letsencrypt-init`.
2828+- Renew TLS certificate: `docker-compose -f docker-compose-extras.yml up letsencrypt-renew`.
2929+- Start server: `docker-compose up`.