Skip to content

codefest-iit-bhu/codefest_backend_25

Folders and files

NameName
Last commit message
Last commit date

Latest commit

40ece58 · Feb 6, 2025

History

37 Commits
Dec 2, 2024
Feb 6, 2025
Dec 2, 2024
Dec 2, 2024
Dec 26, 2024
Feb 1, 2025
Feb 1, 2025
Jan 29, 2025
Feb 2, 2025
Jan 15, 2025
Nov 27, 2024
Jan 2, 2025
Nov 27, 2024
Nov 27, 2024
Dec 2, 2024
Feb 1, 2025
Feb 1, 2025
Feb 1, 2025
Dec 2, 2024

Repository files navigation

Codefest'25 - IIT (BHU)

This is the backend for Codefest'25, fest conducted by CSE department of IIT (BHU) Varanasi.

Setup

  • Fork the repository into your account

  • Clone the forked repository

  • Install the dependencies using the following command:

    npm i
  • Create a .env in the root folder using the .env.example given

  • Run the development server using:

    npm run dev
  • Open http://localhost:{PORT}/api-docs to see the API documentation

Contribution

  • Create a branch for the task you're assigned with

  • Make changes in that branch

  • Commit your changes and push to the your forked repo.

  • Open a pull request to the upstream (this main repo) and wait for a maintainer to merge your PR.

  • Every now and then, do git fetch --all and git rebase upstream/main to keep your fork synced with the upstream.

  • If you can't see upstream in git remote -v, do git remote add upstream "https://github.com/codefest-iit-bhu/codefest_backend_25" to add the upstream