For Technical Test
- Code Editor
- Python 3
- Web Browser
- Install git: https://git-scm.com/downloads.
- Set up your git with your github account.
- Install pipenv in the command line:
pip3 install pipenv
- Make sure folder to Python3 is configured in your PATH.
- Go to directory or folder to put project.
- Run these commands in bash or command line:
cd <directory>
python -m venv env
cd env
cmd: Scripts\activate
bash: source ./Scripts/activate
pip install django
pip install djangorestframework
pip install django-simple-history
cd <directory>
git clone https://github.com/jonahmarc/tradingsystem.git
cd tradingsystem
python manage.py makemigrations
python manage.py migrate
python manage.py runserver
- Go to the address specified (http://127.0.0.1:8000/) to see development site.
python manage.py createsuperuser
- Go to (http://127.0.0.1:8000/admin) to see the admin dashboard and use the newly created superuser credentials.