Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jkrhb/sdf-wot-converter-py-demo
Demo web app for my SDF WoT Converter. Realized with Flask.
https://github.com/jkrhb/sdf-wot-converter-py-demo
Last synced: 22 days ago
JSON representation
Demo web app for my SDF WoT Converter. Realized with Flask.
- Host: GitHub
- URL: https://github.com/jkrhb/sdf-wot-converter-py-demo
- Owner: JKRhb
- Created: 2021-08-02T23:27:30.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-08-22T07:58:01.000Z (5 months ago)
- Last Synced: 2024-10-14T15:34:16.475Z (3 months ago)
- Language: HTML
- Homepage:
- Size: 205 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
SDF WoT Converter Demo
=================Demo web app for my [SDF WoT Converter](https://github.com/JKRhb/sdf-wot-converter-py). Realized with Flask.
You can visit try out the converter application at https://sdf-wot-converter.herokuapp.com/.
## Local Deployment
To run the web application locally, you need to have Python (version 3.7 or
above) as well as the required dependencies installed. Using pip, you can
install the requird packages by typing```sh
pip install -r requirements.txt
```into a terminal of your choice. You can then use
```sh
flask run
```to start the web application in production mode or
```sh
./run-server.sh
```to run it in debug mode.[^1] To access the application, visit
`http://127.0.0.1:5000/` in the web browser of your choice.[^1]: Note that the script must be marked as executable.