https://github.com/muath-ye/flask_app
https://github.com/muath-ye/flask_app
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/muath-ye/flask_app
- Owner: muath-ye
- Created: 2021-04-21T11:48:03.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-04-21T13:31:16.000Z (about 4 years ago)
- Last Synced: 2025-01-03T12:44:32.322Z (5 months ago)
- Language: Python
- Size: 5.36 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Getting started With Flash
## Install virtualenv:
Now that you have pip installed and a command prompt open installing virtualenv to our root Python installation is as easy as typing:
> pip install virtualenv
Now we have virtualenv installed which will make it possible to create individual environments to test our code in.
## Install virtualenvwrapper-win:
This is the kit and caboodle of this guide.
> pip install virtualenvwrapper-win
Excellent! Now we have everything we need to start building software using python!
## Every Project follow these 7 Steps:
### Make a Virtual Environment:
I'll call it ```HelloFlask```
**Not working**
> mkvirtualenv HelloFlask
---------------------------
> py -m venv env
> env\Scripts\activate
> pip install flask
> set FLASK_APP=app.py
> set FLASK_DEBUG=1
> flask run