https://github.com/the-akira/django-project
Small Django Project for learning purposes
https://github.com/the-akira/django-project
blog django python web-application
Last synced: about 2 months ago
JSON representation
Small Django Project for learning purposes
- Host: GitHub
- URL: https://github.com/the-akira/django-project
- Owner: the-akira
- Created: 2019-06-11T00:10:06.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-04-21T21:46:46.000Z (about 2 years ago)
- Last Synced: 2025-01-18T18:46:43.368Z (3 months ago)
- Topics: blog, django, python, web-application
- Language: Python
- Homepage:
- Size: 9.29 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Django Project
Small Django Project for learning purposes. Inspired by the [tutorial series](https://www.youtube.com/playlist?list=PL-osiE80TeTtoQCKZ03TU5fNfx2UY6U4p) of **Corey Schafer**.
## Installation
### Clone the Repository
```
git clone https://github.com/the-akira/Django-Project.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 `django_project` 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.