https://github.com/gr1d99/ohs
django helpdesk python3
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/gr1d99/ohs
- Owner: gr1d99
- License: mit
- Created: 2017-08-08T16:32:33.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T00:43:35.000Z (almost 3 years ago)
- Last Synced: 2024-04-16T04:23:56.869Z (over 1 year ago)
- Topics: django, helpdesk, python3
- Language: Python
- Size: 2.61 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Online Helpdesk
Is a web project that will provide online helpdesk services to students.
Teachers will be able to provide solutions to issues submitted by students.## Demo
[Online Helpdesk](https://ohs.herokuapp.com)
## Prerequisites
- Python3 [Installation](https://www.python.org/downloads/)
- Git [Installation](https://git-scm.com/downloads)
- Virtualenv, try `pip install virtualenv` or visit [installation site](http://pymote.readthedocs.io/en/latest/install/windows_virtualenv.html)## Usage
1. Clone this repo `git clone https://github.com/gr1d99/OHS.git`
2. Navigate to the root of the project `cd OHS`
3. Checkout into `develop` branch, `git checkout develop`
4. Create a virtual enviroment `virtualenv --python=python3 env`
5. Activate the virtual enviroment `env\Scripts\activate`
6. Install app dependencies `pip install -r requirements.txt`
7. Start your web app `python manage.py runserver`