https://github.com/raphaelapeh/blog
A miniature blog 🎯 website with django in a single file 🗃️
https://github.com/raphaelapeh/blog
dj django django-ninja nanodjango python
Last synced: 3 months ago
JSON representation
A miniature blog 🎯 website with django in a single file 🗃️
- Host: GitHub
- URL: https://github.com/raphaelapeh/blog
- Owner: RaphaelApeh
- Created: 2024-07-08T12:12:47.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-01-10T03:06:35.000Z (5 months ago)
- Last Synced: 2025-01-10T04:18:47.283Z (5 months ago)
- Topics: dj, django, django-ninja, nanodjango, python
- Language: Python
- Homepage:
- Size: 5.86 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PostGird
A blog application with [django](https://docs.djangoproject.com/en/5.1/) and [nanodjango](https://github.com/radiac/nanodjango)
## Get Started 🎯
- Create a virtual environment 📁
```bash
#using uv
uv venv venv
# venv
python -m venv venv
```
- Install the dependencies 🛠
```bash
# using uv
uv run pip install -r requirements.txt
```
- Setting `env.` ⚙
```python
DJANGO_SECRET_KEY=""
DJANGO_DEBUG=True
```
### Working dir 📂
```
cd src/
```
### Migrate 🚴♂️
```bash
uv run nanodjango run app.py
```
### Runserver 🚀
```bash
uv run nanodjango manage app.py runserver
```### Clone the repository 📌
```bash
git clone https://github.com/RaphaelApeh/blog.git
```