https://github.com/tushortz/ppmg-tech-test
https://github.com/tushortz/ppmg-tech-test
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tushortz/ppmg-tech-test
- Owner: tushortz
- License: mit
- Created: 2021-03-31T13:39:44.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-04-06T23:43:14.000Z (about 4 years ago)
- Last Synced: 2025-01-09T05:18:26.071Z (5 months ago)
- Language: HTML
- Size: 2.18 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PPMG Tech Test
Test provided by PPMG
## requirements
* python v >= 3.5## How to run
* create a virtual environment using the following command```sh
$ python -m venv env
```Activate the virtual environment using
```sh
$ env/Scripts/activate # windows
$ source env/bin/activate # other os platforms
```> **Note**: creating the virtual environment step above is optional.
## Install requirements
```sh
$ pip install -r requirements.txt
```## Running the application
```sh
$ python manage.py migrate
$ python manage.py runserver
```