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