Skip to content

lucerion/readable

Repository files navigation

Readable

Make sites readable

Setup

Locally

  • Install dependencies: yarn install
  • Create .env file (see .env.example) and edit it. Use yarn generate.secret command to generate SECRET_KEY and SECRET_IV
  • Run application: yarn start
  • Open http://localhost:8080 in your browser.

Docker

  • Install Docker on your machine.
  • Create .env file (see .env.example) and edit it. Use yarn generate.secret command to generate SECRET_KEY and SECRET_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.

License

BSD-3-Clause