New Project Setup
When you create a new Flask project, here is what you need to do:
- Open the New Project wizard in PyCharm
- Select ‘Flask’ as the project type/template
- Select your virtual environment as the project interpreter
- Create the project
- Create a new Git repository (each project should be its own repository)
- Copy the contents of gitignore into a file called
.gitignore
, and add this to Git - Download the latest manage.py to your project's Git repository, edit it to load your project (see TODO comment), and add it to Git
- Create an initial Git commit
Assignment 0 walks through this in more detail.