Django app, you can add posts and comment them
-
Clone app from repository with command in terminal:
git clone https://github.com/Rudique/News_app.git
-
Install dependencies from requirements.txt with command:
pip install -r requirements.txt
-
Create superuser to manage the admin panel:
python3 manage.py createsuperuser
-
Make migrations with 2 commands:
python3 manage.py makemigrations
python3 manage.py migrate
-
Run app with command:
python3 manage.py runserver
- /admin - admin panel, where you can add users, news, comments and edit them
- /news - listview of all news
- news/new - adding new post