Skip to content

istenith/join.istenith.com

Folders and files

NameName
Last commit message
Last commit date

Latest commit

85e610a · Aug 1, 2024
Jul 30, 2023
Aug 1, 2024
Aug 1, 2024
Dec 10, 2022
Sep 1, 2023
Aug 1, 2023
Aug 1, 2024
Jun 24, 2022
Jul 30, 2023
Jul 30, 2023
Jul 30, 2023
Jul 22, 2023
Jul 30, 2023
Aug 1, 2024
Jun 23, 2022
Aug 1, 2024

Repository files navigation

ISTE

INTERVIEWS WEBSITE'22

This website is using django backend. All you need to do is to go through https://docs.djangoproject.com/ so that you get the basic knowledge that how things are working in django.

Steps to follow ✏️:

  1. First of all install Django:

For any system:

  python -m pip install Django

For Archlinux:

sudo pacman -S python-django
  1. Clone the repository:
git clone https://github.com/istenith/join.istenith.com.git
  1. Change the directory to join.istenith.com using:
cd join.istenith.com
  1. Create a virtual environment:
pip install virtualenv
virtualenv venv
  1. Activate the virtual environment
source venv/bin/activate
  1. Now install all the packages which are being used in this project:
pip install -r requirements.txt
  1. Migrate all the database
python manage.py migrate
  1. Load the static files
python manage.py collectstatic
  1. Now run the development server:
python manage.py runserver