all repos — artbound-python @ b5720f74b0147985267c3c962c494ae983e25190

A client-server reimplementation of the administration panel for ArtBound.

README.md (view raw)

 1# artbound-python
 2
 3A client-server reimplementation of the administration panel for ArtBound.
 4
 5## Instructions
 61. Copy `.env.example` into `.env` and fill it out;
 72. Generate a `credentials.json` with Drive and Sheets APIs and the following redirect URL: `http://localhost:1111`;
 83. Install dependencies: `poetry install`;
 9
10## Usage
11* Debug: `poetry run flask --app artbound_python run --port 1111 --debug`.
12* Production: `poetry run waitress-serve --host 0.0.0.0 --port 1111 artbound_python:app`