https://github.com/artinmohajeri/react-django-application
https://github.com/artinmohajeri/react-django-application
backend bootstrap bootstrap5 component css django django-application django-rest-framework fetch-api material-ui react react-components react-hooks react-router react-router-dom reactjs rest-api
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/artinmohajeri/react-django-application
- Owner: artinmohajeri
- Created: 2024-04-06T07:49:22.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-17T12:15:32.000Z (about 1 year ago)
- Last Synced: 2025-06-30T19:04:24.597Z (14 days ago)
- Topics: backend, bootstrap, bootstrap5, component, css, django, django-application, django-rest-framework, fetch-api, material-ui, react, react-components, react-hooks, react-router, react-router-dom, reactjs, rest-api
- Language: JavaScript
- Homepage:
- Size: 569 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Music Controller App
### I have used Reactjs and materialUI for the frontend and django and rest_framework for the api and backend
### This project is a practice and it may not be industry-standard.
# follow these comands to run the project π
make a virtualenv π
```
python -m venv venv
```activate the virtualenvπ
```
venv\Scripts\activate
```install django packages π
```
pip install -r requirements.txt
```do the migration part π
```
python manage.py makemigrations
python manage.py migrate
```run the django server π
```
python manage.py runserver
```move to the frontend directory π
```
cd frontend
```install react and related packages π
```
npm i
```compile the frontend and run π
```
npm run build
```
or for development π
```
npm run dev
```



