The Literature Society, IIT Jodhpur is a society of literary enthusiasts who like to engage in activities like poetry sessions, book reading sessions etc. People can view the poetries and other writings uploaded by the students of IITJ alongside the important announcements regarding the society activities. Furthermore, the students can issue books through the website.
Name | Roll no. | Role |
---|---|---|
Shubh Goyal | B21CS073 | Front-end |
Sukriti Goyal | B21CS075 | Back-end |
- Make sure you have installed npm globally. It comes with node.js.
- Open the terminal and go to the project directory
cd frontend
- Install dependencies
npm i
- Start the server
npm run dev
- The project should now be running locally!
- Make sure you have python3 installed on your system.
- Make a .env file in the backend folder
- Copy the contents of the .env.example file to the .env file
To check this
python --version
Python 3.10.5
- Install virtualenv in case you haven't
pip install virtualenv
- Activate the virtual environment
virtualenv venv
venv\scripts\activate
- Install the necessary python packages
pip install -r requirements.txt
- Go to the project directory
cd backend
- Migrate the models
python manage.py makemigrations
python manage.py migrate
- Run the server
python manage.py runserver