Skip to content

izudada/my_portfolio

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

My Portfolio

Deployed to:

  • Heroku live project. Link at here

Setup For My Portfolio

The first thing to do is to clone the repository:

$ git clone https://github.com/izudada/my_portfolio.git

Create a virtual environment to install dependencies and activate it use the link below first to install pipenv:

https://pypi.org/project/pipenv/

then to activate a virtual enviroment:

$ pipenv shell

Then install the dependencies:

(env)$ pip install -r requirements.txt

Note the (folder_name) in front of the prompt. This indicates that this terminal session operates in a virtual environment set up by pipenv using your folder or root directory name.

Use migrate command to effect database model:

(folder_name)$ python manage.py migrate

Once pip has finished downloading the dependencies:

(folder_name)$ python manage.py runserver

And navigate to http://127.0.0.1:8000/.