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
- Host: GitHub
- URL: https://github.com/the-akira/cyberpunk
- Owner: the-akira
- Created: 2019-05-17T21:12:22.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-07-12T15:44:28.000Z (almost 4 years ago)
- Last Synced: 2025-01-18T18:46:45.569Z (3 months ago)
- Topics: django, djangogirls, python, pythonanywhere, sqlite3
- Language: JavaScript
- Homepage:
- Size: 9.59 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.