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

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.

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
```