Fullstack web application for technical and behavioural interview simulation and structured feedback based on STAR and UMPIRE framework.
- Python 3.12.4
- pip (Python package installer)
- Clone the repository:
git clone https://github.com/shivamrawat1/pitchmycode.git- Navigate to the project directory:
cd pitchmycode- Create and activate a virtual environment:
- On Mac:
python -m venv venv
source venv/bin/activate- On Windows:
python -m venv venv
venv\Scripts\activate- Install the required packages:
pip install -r requirements.txtand
npm install- Set Up Environment Variables using the .env.local file
- Run Migrations
python manage.py migrate- Create a Superuser (Optional)
python manage.py createsuperuserFollow the prompts to set up an admin account. 8. Collect Static Files (If Required)
python manage.py collectstatic --noinput- Run the application:
python manage.py runserverBy default, this will run the server on http://127.0.0.1:8000/