A Django based personal portfolio website.
- Git
- virtualenv
- Python
- Firstly, clone the repository using the git shell
$ git clone https://github.com/vaibhav0103/personal-portfolio.git
- Goto the base directory of the project
cd portfolio
- Create a virtual environment and activate it.
$ virtualenv venv
$ venv\Scripts\activate
on Windows or$ source venv/bin/activate
on Posix system - Install the requirements for the project
$ pip install -r requirements.txt
- Now start the localhost server
$ python manage.py runserver