all repos — myprecious @ main

A lightweight web service to backup precious game saves.

README.md (view raw)

 1# myprecious
 2
 3## Configuration
 4```
 5cp .env.example .env
 6nano .env
 7```
 8
 9### Docker
10```
11docker-compose up -d
12```
13
14### Debug
15```
16poetry install
17poetry run flask --app myprecious run --port 1111 --debug
18```
19
20
21## Production
22```
23poetry install --with prod
24poetry run waitress-serve --port 1111 myprecious:app
25```
26