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: 9 days 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 6 years ago)
- Default Branch: master
- Last Pushed: 2024-04-03T17:50:50.000Z (about 1 year ago)
- Last Synced: 2025-03-31T04:41:12.391Z (about 2 months 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**