/
T1 W1

T1 W1

Setup

Go into backend folder and follow readme for more details.

https://github.com/csesoc/Circles

  • require

    • Node js

    • Python3

    • Docker desktop

  • Set up venv: python python3 -m venv .

  • source ./bin/activate (in scripts folder for windows)

  • set up env files with below info

backend.env

MONGODB_USERNAME=... MONGODB_PASSWORD=... MONGODB_SERVICE_HOSTNAME=mongodb PYTHON_VERSION=python3

mongodb.env

MONGO_INITDB_ROOT_USERNAME=... MONGO_INITDB_ROOT_PASSWORD=...

 frontend.env

VITE_BACKEND_API_BASE_URL=http://localhost:8000/ 
  • pip3 install-r requirements.txt

    • from inside backend

  • docker compose build

  • docker compose up frontend

  • docker ps

    • check other containers 

Sprint 1 updates

  • will be converting FE redux slices into api calls to new backend routes 

Account checks

@Leonardo Fan (Unlicensed) to check christian’s password for cse account

Git practices

  • conventional commits Conventional Commits

    • Have a look at https://github.com/csesoc/circles/pull/845 for an example of a good PR name.

    • Format as:

      • commit_type(feature-or-location-it-affect) <title> [<TICKET-NUMBER]`
      • Please ensure that the ticket number from Jira is also a part of your branch name, to allow Jira / Git sync.

  • picture/video for fe changes

  • descriptive pr name and description

  • request review from leads

  • PR Merge requires:

    • Approval from CODEOWNER

    • Passing all Buildss

    • Sufficient Linting. Absolute type accuracy

Related content