Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/berkayalparslan/cms-app


https://github.com/berkayalparslan/cms-app

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# CMS APP

A simple Content Management System (CMS) written in Django.

## What does it do?
- Creates, updates and deletes posts.
- Attempts to amaze you with very simple user interface.
- Impresses me with the speed of development in Django.
- Gives me a playground to practice many dev&qa related stuff.

## Installation
1. Clone repo.

```
[email protected]:berkayalparslan/cms-app.git
cd cms-app
```
2. Create and activate a virtual environment.

```
python -m venv .venv
source .venv/bin/activate
```
3. Change to app/ directory and install the dependencies.

```
cd app
pip install -r requirements.txt
```
4. Apply migrations

```python manage.py migrate```

5. Run the dev server.

```python manage.py runserver```

---
*I use this project for practicing various dev and qa related tasks. Feel free to use it, modify it, and contribute!*