https://github.com/adonyssantos/python-flask-website
Web Portfolio with Flask
https://github.com/adonyssantos/python-flask-website
bootstrap flask python
Last synced: 15 days ago
JSON representation
Web Portfolio with Flask
- Host: GitHub
- URL: https://github.com/adonyssantos/python-flask-website
- Owner: adonyssantos
- License: mit
- Created: 2022-04-28T15:29:55.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-05-26T18:55:36.000Z (about 4 years ago)
- Last Synced: 2025-08-12T13:28:49.610Z (11 months ago)
- Topics: bootstrap, flask, python
- Language: Python
- Homepage:
- Size: 1.96 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cincinnatus Dev Portfolio made with Flask
This project is the result of a series of tutorials and courses I've taken on Cincinnatus.
**Live Preview:** [https://cincinnatus-portfolio.herokuapp.com/](https://cincinnatus-portfolio.herokuapp.com/)
## Screenshots


## Usage
### Clone the Repository
```bash
$ git clone https://github.com/adonyssantos/python-flask-website
$ cd python-flask-website
```
### Setup envoronment
```bash
$ pip install virtualenv
$ virtualenv .venv
$ source .venv/bin/activate
```
#### To activate the virtual environment
```bash
$ source .venv/bin/activate
```
#### To deactivate the virtual environment
```bash
$ deactivate
```
### Install Dependencies
```bash
$ pip install -r requirements.txt
```
### Run
#### Run in development mode
```bash
$ python run.py
```
#### Run in production mode
```bash
$ gunicorn app:app
```
## Authors
- [@adonyssantos](https://www.github.com/adonyssantos)
## License
[MIT](https://choosealicense.com/licenses/mit/)