feat: Add some readme info and add some more boilerplate code
All checks were successful
Build Docker / BuildImage (push) Successful in 2m37s

This commit is contained in:
2025-07-02 15:55:50 +10:00
parent a6adc553d9
commit 6d6a443c89
4 changed files with 108 additions and 3 deletions

View File

@@ -1,3 +1,19 @@
# python-webserver-template
# Python Flask Webserver Template
Python3 website template including git actions
Python3 website template including git actions
# Development
1. Install requirements
```bash
python3 -m pip install -r requirements.txt
```
2. Run the dev server
```bash
python3 server.py
```
# Production
Run using the main.py file
```bash
python3 main.py
```