A client-server reimplementation of the administration panel for ArtBound.
Go to file
Marco Andronaco ef590a5626 fix license 2023-08-17 02:46:27 +02:00
.vscode almost working 2023-08-04 16:50:59 +02:00
artbound_python more polish 2023-08-12 15:46:21 +02:00
tests add project files 2023-08-04 14:57:12 +02:00
.dockerignore containerized 2023-08-04 19:49:22 +02:00
.env.example add project files 2023-08-04 14:57:12 +02:00
.gitignore add project files 2023-08-04 14:57:12 +02:00
Dockerfile back to waitress 2023-08-10 02:09:59 +02:00
LICENSE fix license 2023-08-17 02:46:27 +02:00
README.md switch to bjoern 2023-08-09 12:18:03 +02:00
docker-compose.yaml remove healthcheck 2023-08-09 13:57:22 +02:00
get_token.py containerized 2023-08-04 19:49:22 +02:00
poetry.lock back to waitress 2023-08-10 02:09:59 +02:00
pyproject.toml back to waitress 2023-08-10 02:09:59 +02:00
requirements.txt containerized 2023-08-04 19:49:22 +02:00

README.md

artbound-python

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

Configuration

  1. Copy .env.example into .env and fill it out;
  2. Generate a credentials.json with Drive and Sheets APIs and the following redirect URL: http://localhost:1111;

Usage (poetry)

  • Debug:
poetry install
poetry run flask --app artbound_python run --port 1111 --debug
  • Production:
poetry install --with prod
poetry run python artbound_python

Usage (docker)

  1. Generate a token.json file: poetry install; poetry run python get_token.py;
  2. Build the image and start the container: docker-compose up -d.