Make sites readable
- Install dependencies:
yarn install
- Create
.env
file (see .env.example) and edit it. Useyarn generate.secret
command to generateSECRET_KEY
andSECRET_IV
- Run application:
yarn start
- Open http://localhost:8080 in your browser.
- Install Docker on your machine.
- Create
.env
file (see .env.example) and edit it. Useyarn generate.secret
command to generateSECRET_KEY
andSECRET_IV
- Build image:
docker build -t readable .
- Run application:
docker run -p 8080:8080 --env-file .env readable
- Open http://localhost:8000 in your browser.