Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/hazemmeqdad/blog


https://github.com/hazemmeqdad/blog

Last synced: 12 days ago
JSON representation

Awesome Lists containing this project

README

        

# blog

this a video to show the website
https://cdn.hazemmeqdad.com/f/2024-01-05%2020-57-19.mp4

## Setup
### setup venv
```shell
python3 -m venv venv
```
### active venv
Windows
```powershell
.\venv\Scripts\activate
```
Linux or MacOS
```shell
source venv/bin/activate
```
### install django
```shell
pip install django
```
### Apply migrations
```shell
python manage.py migrate
```
### Create admin account
```shell
python manage.py createsuperuser
```
input all admin info
### Run server
```shell
python manage.py runserver
```