https://github.com/paritoshtripathi935/portfolio
My Personal Portfolio website built using Django.
https://github.com/paritoshtripathi935/portfolio
css django portfolio-website python
Last synced: about 2 months ago
JSON representation
My Personal Portfolio website built using Django.
- Host: GitHub
- URL: https://github.com/paritoshtripathi935/portfolio
- Owner: paritoshtripathi935
- License: mit
- Created: 2022-06-11T15:03:21.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-14T14:53:46.000Z (about 3 years ago)
- Last Synced: 2025-01-21T04:41:39.669Z (about 1 year ago)
- Topics: css, django, portfolio-website, python
- Language: CSS
- Homepage: https://paritoshtripathi.herokuapp.com/
- Size: 31.7 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Personal Portfolio
A Personal Portfolio Website built using Django
### :star: Star us on GitHub — it helps!

[](https://github.com/tsvillain/Twitter-Bot/issues)
[](https://github.com/tsvillain/Twitter-Bot/blob/master/LICENSE)
[](https://www.linkedin.com/in/paritosh-tripathi-social/)
## 🚀 Installation
#### Clone the repo
```
$ git clone https://github.com/paritoshtripathi935/Portfolio.git
```
#### Make a Virtual Environment
```
$ python3 -m venv venv
```
#### Activate virtual Envirnoment
```
$ source venv/bin/activate
```
#### Install Requirenments
```
$ pip install -r requirements.txt
```
## :bulb: Working
#### Create a Django Project
```
$ python manage.py startproject personal_portfolio
```
#### Start a app
Here we will be putting our main code.
```
$ python manage.py startapp Portfolio
```
## Deployment
This website has been deployed using heroku.
1 - Add a .gitignore file for Django, Python and Vscode(for me).
2 - Run below command and save a requirements file.
```
$ pip freeze requirements.txt
```
3 - Add a procfile like a above.
4 - change debug = False.
5 - After deploying run below in heroku bash
```
$ python3 manage.py migrate
```
## For more Refer to this notion page -
[Documentation](https://www.notion.so/paritoshtripathi/ce6ebac1d3864bdba62038d1c75aee36?v=f407e19208c14f84b68c7c5bb889c821)
## I used these resources -
[django Gosting](https://realpython.com/django-hosting-on-heroku/#demo-what-youll-build)
[Setup Django](https://realpython.com/get-started-with-django-1/#set-up-your-development-environment)