Django web app for CS 4398 Texas State University.
- python3 - Programming language.
- pip - Python package manager.
- virtualenv - Isolated development environment.
- Clone or download the repository.
- With pycharm file > open > where/ever/you/downloaded/seProject
- Create virtualenv
- Install requirements.txt
- Tools > Run manage.py Task...
manage.py@seProject > makemigrations accounts resumes manage.py@seProject > migrate manage.py@seProject > runserver
$ git clone https://github.com/yebra06/seProject.git
$ cd seProject
$ virtualenv -p python3 venv
$ source venv/bin/activate
$ pip install -r requirements.txt
$ ./manage.py makemigrations accounts resumes
$ ./manage.py migrate
$ ./manage.py runserver
Using pytest
$ ./manage.py test
- Michael Christenson
- Henderson Cooper
- Alfredo Yebra Jr.
- PyCharm
- User model derived from here