Version: YOUR VERSION HERE
YOUR PROJECT DESCRIPTION HERE
- Feature #1
- Feature #2
- Feature #3
- s3boto
- db
- contrib
- conf
- generic
- shortcuts
First, clone the project repo from Github. Then, change directories into the cloned repository. To accomplish this, execute these commands:
$ git clone https://github.com/nathancmoore/final_project.git
$ cd final_project
Now now that you have cloned your repo and changed directories into the project, create a virtual environment named "ENV", and install the project requirements into your VE.
$ python3 -m venv ENV
$ source ENV/bin/activate
$ pip install -r requirements.txt
Once you have cloned the application and installed the requirements, you can serve the project on your local machine by executing this command from your terminal, on the same level as manage.py.
$ ./manage.py runserver
Once you have executed this command, open your browser, and go to localhost:8000/.
This application uses unittest as a testing suite. To run tests, run:
$ ./manage.py test
To view test coverage, run:
$ coverage report -m
The testing files for this project are:
| File Name | Description |
|---|---|
./ca_website/ca_events/tests.py |
Tests for our Models. |
./ca_website/ca_website/selenium_tests.py |
Selenium browser tests. |
./ca_website/ca_website/tests.py |
Tests for our views. |
The URLS for this project can be found in the following modules:
| URL module | Description |
|---|---|
| ./ca_website/ca_website/urls.py | ca_website URL Configuration. |
- ca_website
- ca_events
- python - programming language
- django - web framework
If you wish to contribute to this project, please contact ncmoore1986@gmail.com
This project is licensed under MIT License - see the LICENSE.md file for details.
- Coffee
This README was generated using writeme.