https://github.com/saadazghour/django-project-portfolio
:feelsgood: A Simple Portfolio and Blog app build with Django and templates styled with Bootstrap framework.
https://github.com/saadazghour/django-project-portfolio
bootstrap-framework django django-blog django-portfolio django-project html5 portfolio python3
Last synced: 5 months ago
JSON representation
:feelsgood: A Simple Portfolio and Blog app build with Django and templates styled with Bootstrap framework.
- Host: GitHub
- URL: https://github.com/saadazghour/django-project-portfolio
- Owner: saadazghour
- License: mit
- Created: 2018-10-24T10:46:04.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-04-03T17:50:50.000Z (over 2 years ago)
- Last Synced: 2025-05-07T00:46:24.359Z (about 1 year ago)
- Topics: bootstrap-framework, django, django-blog, django-portfolio, django-project, html5, portfolio, python3
- Language: Python
- Homepage:
- Size: 160 KB
- Stars: 21
- Watchers: 0
- Forks: 13
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Personal Portfolio
A Simple Portfolio and Blog app build with Django and templates styled with Bootstrap framework .
# Running the Project Locally
## First, clone the repository to your local machine :
```bash
git clone https://github.com/SAzghour/Django-Project-Portfolio.git
```
## Create a virtual environment :
```bash
$ python -m venv .venv
```
## Activate the virtual environment on Windows :
```bash
$ source venv/Scripts/activate
```
## Install the requirements :
```bash
$ pip install -r requirements.txt
```
## Run collect static :
```bash
$ python manage.py collectstatic
```
## To create an superuser account, use this command :
```bash
$ python manage.py createsuperuser
```
## Apply the migrations :
```bash
$ python manage.py migrate
```
## Finally, run the development server :
```bash
$ python manage.py runserver
```
The project will be available at : **http://localhost:8000**