https://github.com/berkayalparslan/cms-app
https://github.com/berkayalparslan/cms-app
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/berkayalparslan/cms-app
- Owner: berkayalparslan
- Created: 2024-09-03T21:07:24.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-10-07T22:13:02.000Z (9 months ago)
- Last Synced: 2025-01-17T06:31:51.586Z (6 months ago)
- Language: Python
- Size: 47.9 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!*