https://github.com/eddyizm/eddyizm
Creating a new personal site, blog using django and python.
https://github.com/eddyizm/eddyizm
blog caddy2 container django podman python3 website
Last synced: 5 months ago
JSON representation
Creating a new personal site, blog using django and python.
- Host: GitHub
- URL: https://github.com/eddyizm/eddyizm
- Owner: eddyizm
- Created: 2018-01-30T17:30:49.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2025-12-16T15:57:35.000Z (6 months ago)
- Last Synced: 2025-12-20T06:58:36.015Z (6 months ago)
- Topics: blog, caddy2, container, django, podman, python3, website
- Language: HTML
- Homepage:
- Size: 17.6 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# eddyizm.com
Creating a new personal site, blog using django and python.
# Set up
This guide assumes you already have python 3 and git installed.
Clone repository
git clone https://github.com/eddyizm/eddyizm.git
Create a virtual environment
python -m venv
Changed directory and activate virtual environment
cd
Scripts\activate
# in bash use this instead
source Scripts/activate
cd
Install Django and verify version installed
pip install django
django-admin --version
# podman
build and run
`podman build -t eddyizm_blog -f ContainerFile --ignorefile .dockerignore`
```
podman run --name=blog -d -p 8000:8000 -v ~/src/eddyizm/data:/data:rw -v ~/src/eddyizm/static:/static:rw -v ~/src/eddyizm/media:/media:rw localhost/eddyizm_blog
```