An open API service indexing awesome lists of open source software.

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.

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**