Skip to content

Instantly share code, notes, and snippets.

@artbikes
Created May 26, 2018 21:14
Show Gist options
  • Save artbikes/79a82191489a9ac0565643096724c7c1 to your computer and use it in GitHub Desktop.
Save artbikes/79a82191489a9ac0565643096724c7c1 to your computer and use it in GitHub Desktop.
Flask Skeleton
mkdir -p new_app
cd new_app
touch run.py
touch config.py
mkdir app
cd app
touch __init__.py
mkdir templates
mkdir static
mkdir module_one
cd module_one
touch __init__.py
touch controllers.py
touch models.py
cd ../templates
mkdir module_one
cd module_one
touch hello.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment