this is Maktab53 Python-Django boot camp first project
JavaScript
Blogify
Introduction
this is Maktab53 Python-Django boot camp first project
Instructor
Mr Farzanmehr
Team members
Pooria Assarehsa
Hamidreza Mohammadi
Sina Esmaili
Seyed Sina Sadeghesfahani
install project
First things first, you need to install the project properly and the following structure will provide you an easy installation experience that needs no prior background knowledge
install the project with powerful python install packages tool pip.
< pip install -e .> or < py -m pip install -e .> or < python -m pip install -e .>
create virtual environment to isolate your project with following steps
windows
linux
mkdir myproject
$ mkdir myproject
cd myproject
$ cd myproject
py -3 -m venv venv
$ python3 -m venv venv
venv\Scripts\activate
venv/bin/activate
install flask into your environment by < pip install flask> or < py pip install flask> or < python pip install flask>