Webpage that guides future business owners through the process to start their business.
Clone the repo and cd into the directory
git clone git@github.com:CoquiCoders/negocio123.git
cd negocio123Create a virtualenv. (Or download it if you don't have it)
virtualenv venv
source venv/bin/activateInstall the project's dependencies using pip
pip install -r requirements.txtNow let's get your database up and running. Run the following command to get some seed data up there:
python db.pyFinally in order to run the server run this command:
python negocio123.py runserverYou should be able to see everything on your localhost:5000
To run the tests run
python tests.py