This is my DBMS mini project!
- Frontend- React, SCSS
- Backend- python(Django)
- Database- SQLite
- API- OpenAI (chatgpt 3.5)
- User
- Blogposts
- Categories
- Images
- Comments
First go to the clinet directory
cd clientThen install all the node modules
npm installRun the react app
npm run devCreate a virtual environment
virtualenv venv
venv\Script\activateInstall all the requirenments
pip install -r requirenment.txtChange the directory to Backend
cd BackendApply all the migrations and migrate the database
python manage.py makemigrations
python manage.py migrateCreate a admin
python manage.py createsuperuserRun the project
python manage.py runserverInstall my-project with npm
npm install my-project
cd my-project
