Skip to content

Latest commit

 

History

History
57 lines (49 loc) · 1.14 KB

README.md

File metadata and controls

57 lines (49 loc) · 1.14 KB

Solace

Overview

Solace is a simple blog application built using Django.

Features

pass

Installation

To get started with Solace, follow these steps:

  1. Clone the repository:

    git clone https://github.com/NPDebs/solace.git
    cd solace
  2. Create and activate a virtual environment:

    python3 -m venv venv
    source venv/bin/activate  # On Windows, use `venv\Scripts\activate`

...

Project Structure

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