Skip to content

Aloosh101/flask-website

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

flask-website

making my own way to learn from Corey Shafer youtube videos and put my knowledge into it.

install pip in arch linux

sudo pacman -S python-pip

create a venv using pip

python -m venv venv

create a gitignore file remove the venv folder

touch .gitignore

to activate the vitual environment

. venv/bin/activate

how to run the flask code

export FLASK_APP=origami.py
then use flask run

how to on the debug mode

export FLASK_DEBUG=1

how to on the flask debug using the script it self

if '__name__' == '__main__':
    Flask.app(debug=True)

About

Trying to create a website using flask and jinja, css, js, sqlalchemy

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%