Skip to content

smhimran/CPorBit

Repository files navigation

CPorBit

Instructions to run

Using Docker

  • Install docker (if you haven't yet)
  • copy the env.example file to a file named .env
  • Update the necessary environment variables
  • Run the application
 docker-compose up 

The application will be available on localhost.

Nope, we go the old ways

Server

  • Create virtualenv

  • Install dependencies

pip install -r requirements.txt
  • Create a .env file from env.example
cp env.example ./.env

for windows, use this command instead

copy env.example .\.env
  • Run the server
python manage.py makemigrations
python manage.py migrate
python manage.py runserver

Client

  • Move to the client directory
cd client
  • Install dependencies
npm install

or, using yarn

yarn install
  • Start the development version
npm run start

or, using yarn

yarn start

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published