https://github.com/thisishaykins/pyflask
A Basic Flask(Python Framework) App with Basic functionalities and usages of it's core libraries
https://github.com/thisishaykins/pyflask
flask flask-application flask-web python python-3 python-script
Last synced: 11 months ago
JSON representation
A Basic Flask(Python Framework) App with Basic functionalities and usages of it's core libraries
- Host: GitHub
- URL: https://github.com/thisishaykins/pyflask
- Owner: thisishaykins
- Created: 2019-11-08T14:22:20.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-15T19:15:20.000Z (over 6 years ago)
- Last Synced: 2025-02-06T15:36:48.360Z (about 1 year ago)
- Topics: flask, flask-application, flask-web, python, python-3, python-script
- Language: HTML
- Size: 15.6 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PyFlask
A Basic Flask(Python Framework) App with Basic functionalities and usages of it's core libraries
## Installation Process
- Clone this Repository
- cd PyFlask into the directory
- Run any python app/file using python "app.py" or python app.py
- Or using the Flask Framework to run app using the process below
- export FLASK_APP=app.py
- flask run
- Enjoy the rest...
## Basic Flask Crud App & Authentication
- Run the python app/file "database.py" using python "database.py" or python database.py
- Or using the Flask Framework to run app using the process below
- export FLASK_APP=database.py
- flask run
- Enjoy a basic crud-auth flask app...