Solace is a simple blog application built using Django.
pass
To get started with Solace, follow these steps:
-
Clone the repository:
git clone https://github.com/NPDebs/solace.git cd solace
-
Create and activate a virtual environment:
python3 -m venv venv source venv/bin/activate # On Windows, use `venv\Scripts\activate`
...
The project is structured as shown below:
solace/
│
├── solace/
│ ├── __init__.py
│ ├── settings.py
│ ├── urls.py
│ ├── wsgi.py
│ └── asgi.py
│
├── blog/
│ ├── __init__.py
│ ├── admin.py
│ ├── apps.py
│ ├── models.py
│ ├── views.py
│ ├── urls.py
│ ├── forms.py
│ ├── templates/
│ │ └── blog/
│ │ ├── base.html
│ │ ├── post_list.html
│ │ ├── post_detail.html
│ │ └── post_form.html
│ └── migrations/
│
├── manage.py
└── requirements.txt