Created
May 26, 2018 21:14
-
-
Save artbikes/79a82191489a9ac0565643096724c7c1 to your computer and use it in GitHub Desktop.
Flask Skeleton
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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