Skip to content

Latest commit

 

History

History
52 lines (47 loc) · 1011 Bytes

README.md

File metadata and controls

52 lines (47 loc) · 1011 Bytes

Table of Contents

Getting Started

To get started, follow the instructions below.

Prerequisites

To run this project, you will need to have the following installed:

Installing

To install this project, run the following command in your terminal:

  1. Activate the project's virtualenv:
pipenv shell

Or

make start-env
  1. Install the dependencies
pipenv install

Running the App

  1. Activate the project's virtualenv, run:
pipenv shell

Or

make start-env
  1. Copy .env file from .env.example
cp ./.env.example .env
  1. Start the application
python manage.py runserver <PORT>

OR

make run-server port=<PORT>