https://github.com/belmeetmule/awblog
A simple blog app where users can post their articles and read what others have posted !!
https://github.com/belmeetmule/awblog
bootstrap5 django-application javascript postgresql python3
Last synced: 3 months ago
JSON representation
A simple blog app where users can post their articles and read what others have posted !!
- Host: GitHub
- URL: https://github.com/belmeetmule/awblog
- Owner: belmeetmule
- Created: 2023-11-17T08:10:47.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-17T11:16:39.000Z (over 2 years ago)
- Last Synced: 2024-10-03T12:29:07.585Z (over 1 year ago)
- Topics: bootstrap5, django-application, javascript, postgresql, python3
- Language: Python
- Homepage:
- Size: 11.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# AWBLOG
## Description
A simple blog app where users can post their articles and read what others have posted !!
## Screenshot
> The screenshot of the app goes here vey soon.
## Live demo
[No live link yet]
## Built with
### Front-End
- Bootstrap
- HTML
- CSS
- Javascript
### Backend
- Django
- Python
- PostgreSQL
## Running the Project Locally
### prerequisites
- [Python]("#")
- [pip]("#")
### Setup
1. First, clone the repository to your local machine:
```bash
git clone https://github.com/belmeetmule/awblog.git
```
2. Get into the cloned directory
```bash
cd awblog
```
3. Create vertual environemt
```bash
pip3 -m venv blog-venv
```
4. Run program under virtual environment:
```bash
source blog-venv/bin/activate
```
5. Install the requirements:
```bash
pip install -r requirements.txt
```
6. Create the database:
```bash
python manage.py migrate
```
7. Finally, run the development server:
```bash
python manage.py runserver
```
The project will be available at 127.0.0.1:8000.