Flask Starter app

Flask starter template for better structuring.

use the starter plate

step 1 : cloning this repo through git

  1. clone the repo
git clone https://github.com/tirtharajsinha/Flask-starter.git

  1. if youremove the .git folder. remember that .git folder is a hidden folder. you can do it either manually in the file explorer or from the comand line

For windows use-

rmdir /s .git

for linux

rm -r .git
  1. initalize a new git repo (in cvase you want to make it a new git repo)
git init
echo "# New flask App" > README.md
git add -A
git commit -m "good first commit"
  1. if you want to connect a remote git repo
git remote add origin [newGithubURL]
git push origin master
  1. create a virtual environment and install requirements.(Recommended)

step 2 : download the code directly from github

  1. if you want to download the repository | click here.
  2. Unzip it and start building your app.
  3. create a virtual environment and install requirements.(recommended)


Set up a Virtual Environment(recommended)

install virtualenv and enable it and install requirements .
virtualenv venv
./venv/Scripts/activate
pip install -r requirements.txt
Deactivate venv
deactivate

Now you are ready to go

GitHub - tirtharajsinha/Flask-starter at pythonawesome.com
Flask starter template for better structuring. Contribute to tirtharajsinha/Flask-starter development by creating an account on GitHub.