Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/berkayalparslan/cms-app
https://github.com/berkayalparslan/cms-app
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/berkayalparslan/cms-app
- Owner: berkayalparslan
- Created: 2024-09-03T21:07:24.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-09-08T22:47:25.000Z (4 months ago)
- Last Synced: 2024-09-09T19:40:48.659Z (4 months ago)
- Language: Python
- Size: 33.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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!*