THON Inventory System
- Python 3
- Pip
- virtualenv
- virtualenvwrapper
- MySQL 5
- $ mkdir inventory
- $ cd inventory
- $ git clone https://github.com/mwm5945/CMPSC-431.git
-
vim ~/.bash_profile and add the following
export WORKON_HOME=~/Envs
source /usr/local/bin/virtualenvwrapper.sh
Then do $ source ~/.bash_profile
-
Make a virtual environment
$ cd inventory
$ mkvirtualenv inventory
-
Activate it
$ workon inventory
-
Create mysql database
mysql> create database inventory
-
Install requirements
$ pip install -r requirements/requirements.txt