Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sauberr/flask-2024
Flask website project for Hillel Python Pro course
https://github.com/sauberr/flask-2024
faker flask python sql
Last synced: 27 days ago
JSON representation
Flask website project for Hillel Python Pro course
- Host: GitHub
- URL: https://github.com/sauberr/flask-2024
- Owner: Sauberr
- License: mit
- Created: 2024-10-03T23:40:05.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2024-12-09T22:28:03.000Z (about 1 month ago)
- Last Synced: 2024-12-09T23:28:14.734Z (about 1 month ago)
- Topics: faker, flask, python, sql
- Language: Python
- Homepage:
- Size: 581 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Flask Website Project
This project is designed to be a practical introduction to the Flask framework for Python. Developed as part of the Hillel Python Pro course, it provides a hands-on learning experience for building web applications. Explore core Flask concepts like routing, templates, and request handling while constructing a functional application. This project serves as a foundation for understanding web development with Python and Flask.
#### Stack:
- [Python](https://www.python.org/downloads/)
- [Flask](https://flask.palletsprojects.com/en/3.0.x/)## Local Developing
All actions should be executed from the source directory of the project and only after installing all requirements.
1. Firstly, create and activate a new virtual environment:
```bash
python3.12 -m venv ../venv
source ../venv/bin/activate
```
2. Install packages:
```bash
pip install --upgrade pip
pip install -r requirements.txt
```
## Run application
```
Run a file called main.
```## License
This project uses the [MIT] license(https://github.com/Sauberr/flask-2024/blob/master/LICENSE)