/web-portal

Official web portal of the Robotics Club, IIT Jodhpur

Primary LanguageVue

Robotics Club Web Portal Build Status Python 3.6 Django 2.2.9 Vue 2.6.11 Digital Ocean

Getting Started

Without Docker

To start your frontend and backend server individually:
Follow the Backend Readme to setup your backend server
Follow the Frontend Readme to setup the frontend server

With Docker

Ensure that you have installed Docker (with Docker Compose).

Run the development server:

cd <project_directory_name>
make dev-start

After executing make dev-start, you will be running:

Make database migrations:

make exec
python manage.py makemigrations
python manage.py migrate

Create a superuser:

make exec
python manage.py createsuperuser

View logs of docker containers:

make dev-logs

To stop the development server:

make dev-stop