https://github.com/suptarr/python-flask-template
Make full use of Flask and Python knowledge to create a website for a fictional animal rescue organization.
https://github.com/suptarr/python-flask-template
css3 flask html5 jinja2 python3
Last synced: about 2 months ago
JSON representation
Make full use of Flask and Python knowledge to create a website for a fictional animal rescue organization.
- Host: GitHub
- URL: https://github.com/suptarr/python-flask-template
- Owner: SupTarr
- Created: 2023-04-01T12:39:40.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-04-08T02:20:15.000Z (about 3 years ago)
- Last Synced: 2025-06-06T10:12:42.077Z (about 1 year ago)
- Topics: css3, flask, html5, jinja2, python3
- Language: HTML
- Homepage:
- Size: 673 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python Flask Template
## About The Project
This project was completed as part of `Flask: Develop Web Applications in Python` form `educative`. I am tasked to make full use of Flask and Python knowledge and its accompanying documentation to create a website for a fictional animal rescue organization.
## Technologies
This project was created with:
- Python
- Flask
- PostgreSQL
## Installation
### Run Locally
Clone the project
```sh
git clone https://github.com/SupTarr/Python-Flask-Template
```
### Virtual environment on windows
To install `virtualenv` via pip
```cmd
py -m pip install --user virtualenv
```
To create a `virtual environment` for your project, open a new command prompt, navigate to the folder where you want to create your project and then enter the following:
```cmd
py -m virtualenv .
```
To activate the environment, run:
```cmd
.\Scripts\activate.bat
```
(Python-FastAPI-Template) C:\Users\tatas\Desktop\SupTarr\Workspace\Python-FastAPI-Template>
In the command prompt, ensure your virtual environment is active, and execute the following command:
```cmd
pip install -r requirements.txt
```
### Flask
```cmd
python -m flask --app app --debug run
```