Skip to content

Latest commit

 

History

History
50 lines (42 loc) · 897 Bytes

File metadata and controls

50 lines (42 loc) · 897 Bytes

Placement-Portal

1. Clone the repo

git clone https://github.com/PLACEMENT-JKSHIM/Placement-Portal-Backend.git

Note: make sure you after this step cd Placement-Portal-Backend

2. Create Python virtual environment

python -m venv env

3. Enter virtual enviroment

.\env\Scripts\activate

4. Install python modules

pip install -r requirements.txt

5. Migrate Database

python manage.py makemigrations
python manage.py migrate

6.Create a super user. This is to access Admin panel and admin specific pages.

python manage.py createsuperuser

7. Run Server

python manage.py runserver

8. Tailwind Setup

npm i
npm run dev

Note: this commands watches changes in tailwind output file (run it in another terminal in vscode and then run server)