This website was created to help people prepare for interviews in IT companies
It is proposed to recreate the process of a real interview between two candidates - one of them will be an interviewer and will conduct the interview, and the other will be passing it it
The website features two main functions:
- Register the interviewer for a specific date and time to conduct an interview at that time
- For the interviewee, find a suitable interviewer based on required programming language and desired date
To launch the Interview Prepare Helper run following on your Linux PC
Download the Virtual Enviroment
python3 -m venv env
source env/bin/activate
Then install all the necessary frameworks
pip install -r requirements.txt
Then you need to initialize DataBase on your PC
So:
- Create database.db in main directory
- Run following:
flask db init
flask db migrate -m "initial migration"
flask db upgrade
And finally
make run
And enjoy localhost:8000