This is a simple website to generate and upload images to Open EPaper Link Access Point.
- Python 3.9+
- Git LFS installed (for the images)
python3 -m venv .venv
source .venv/bin/activate
pip3 install -r requirements.txt
flask --app tag_configurator.app run --port 8000 --host 0.0.0.0
Before running the server for the first time, you have to configure the IP address of the Open EPaper Link access point. There are two ways to do this.
- Copy the
config.toml.example
file toconfig.toml
- Open the
config.toml
file in a text editor - Set the
AP_IP
variable to the IP address of the access point
AP_IP = "1.2.3.4"
Alternatively you can set the environment variable FLASK_AP_IP
either using export FLASK_AP_IP=1.2.3.4
or when
starting the server:
FLASK_AP_IP=1.2.3.4 flask --app tag_configurator.app run --port 8000 --host 0.0.0.0