Skip to content
This repository has been archived by the owner on Feb 26, 2019. It is now read-only.

Latest commit

 

History

History
46 lines (26 loc) · 681 Bytes

README.md

File metadata and controls

46 lines (26 loc) · 681 Bytes

CMPSC-431

THON Inventory System

Prereqs.

  • Python 3
  • Pip
  • virtualenv
  • virtualenvwrapper
  • MySQL 5

Repository

Setting Up Stuff

  1. vim ~/.bash_profile and add the following

    export WORKON_HOME=~/Envs

    source /usr/local/bin/virtualenvwrapper.sh

    Then do $ source ~/.bash_profile

  2. Make a virtual environment

$ cd inventory

$ mkvirtualenv inventory

  1. Activate it

    $ workon inventory

  2. Create mysql database

mysql> create database inventory

  1. Install requirements

    $ pip install -r requirements/requirements.txt