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

https://github.com/the-akira/cyberpunk

Small Django Project for learning purposes
https://github.com/the-akira/cyberpunk

django djangogirls python pythonanywhere sqlite3

Last synced: about 2 months ago
JSON representation

Small Django Project for learning purposes

Awesome Lists containing this project

README

        

# Cyber Punk Blog

Small Django Project for learning purposes. Inspired by the [tutorial series](https://tutorial.djangogirls.org/en/) of Django Girls.

## Installation

### Clone the Repository

```
git clone https://github.com/the-akira/cyberpunk.git
```

### Inside the Main Directory

Create a Virtual Environment

```
python -m venv myvenv
```

Activate the Virtual Environment

```
source myvenv/bin/activate
```

Install Requirements

```
pip install -r requirements.txt
```

Navigate to `blog` and Run the Application

```
python manage.py runserver
```

You can now open your Web Browser and navigate to `http://127.0.0.1:8000/` to see the Web Application.