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.txtflask --app tag_configurator.app run --port 8000 --host 0.0.0.0Before 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.examplefile toconfig.toml - Open the
config.tomlfile in a text editor - Set the
AP_IPvariable 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