init commit

This commit is contained in:
2025-04-19 17:09:13 +02:00
commit 5ff83ecaeb
39 changed files with 2020 additions and 0 deletions

35
README.md Normal file
View File

@@ -0,0 +1,35 @@
# PATLITE light tower controller
## frontend
setup
```
cp .env.exmaple .env
```
build
```
cd frontend
yarn
yarn build
# docker build
build -t patlite-light-tower-controller .
```
## server
```
cd server
virtualenv env
source env/bin/activate
pip3 install -r requirements.txt
python3 main.py
or
python3 --server main.py
```