Codebase for Flask Examples.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
- python3
- pip3
- virtualenvwrapper
Install python3
sudo apt-get install -y python3Install pip3
sudo apt-get install -y python3-pipInstall virtualenvwrapper
sudo pip3 install vitualenvwrapperOn your .zshrc or .bashrc
export WORKON_HOME=$HOME/.virtualenvs
export PROJECT_HOME=$HOME/projects
source /usr/local/bin/virtualenvwrapper.shsource ~/.bashrc
#or
source ~/.zshrcCreate a virtualenv
mkvirtualenv flask-mega-project
workon flask-mega-projectClone the Repo
git clone https://github.com/AlaminMahamud/flask-mega-project.git
cd flask-mega-projectInstall the requirements
pip install -r requirements.txtpython -m unittest discover -vAdd additional notes about how to deploy this on a live system
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
We use SemVer for versioning. For the versions available, see the tags on this repository.
- Alamin Mahamud - Initial work - alamin.rocks
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE file for details
- Hat tip to anyone whose code was used
- Inspiration - vinta and other awesome repo guys.