An open API service indexing awesome lists of open source software.

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.

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
```