https://github.com/arvind-4/exp-website
A Blog app with comments.
https://github.com/arvind-4/exp-website
django python tailwindcss
Last synced: about 2 months ago
JSON representation
A Blog app with comments.
- Host: GitHub
- URL: https://github.com/arvind-4/exp-website
- Owner: arvind-4
- License: mit
- Created: 2022-12-10T10:52:59.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-06-19T11:30:56.000Z (almost 2 years ago)
- Last Synced: 2025-05-15T19:11:23.264Z (about 1 year ago)
- Topics: django, python, tailwindcss
- Language: Python
- Homepage: https://github.com/Arvind-4/Exp-Website
- Size: 31.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Level: 02
- ### Admin Portal:
- **Core data management:**
- [x] Subject List - Dynamically managed (Default list - Physics, Maths, Botany, and Zoology).
- [x] Category Tags - Dynamically managed (Will be added to the experiments and can be used for filtering purposes).
- **Content Edit feature:**
- [x] Content creation - While creating the content, in the Subject details option the list will be shown dynamically with respect to Core Data Management.
- [x] Views count option.
- **Blog Page:**
- [x] Add filters option.
- [x] Provide Claps option to the viewers.
- [ ] Sorting option based on Views and Claps.
- [x] Frontend Improvements.
## Get & Running on your Local Machine
- Clone the **Repo**
```sh
cd ~/Dev/
mkdir exp
cd exp
git clone .
```
- Create a **Virtual Environment** for **Python**
- using **Poetry**
```python
virtualenv --python=python3.9 .
source bin/activate
poetry install
```
- using **Virtualenv**
```python
python -m virtualenv --python=python3.9 .
source bin/activate
pip install -r requirements.txt
```
- Run Locally
```python
cd ~/Dev/django_vercel
python manage.py runserver
```