Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hazemmeqdad/blog
https://github.com/hazemmeqdad/blog
Last synced: 12 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/hazemmeqdad/blog
- Owner: HazemMeqdad
- Created: 2024-01-05T15:24:28.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2024-01-05T18:09:58.000Z (10 months ago)
- Last Synced: 2024-01-06T16:38:00.017Z (10 months ago)
- Language: Python
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```