Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/victor823543/musicproject_react
A music website built with django and react
https://github.com/victor823543/musicproject_react
Last synced: 2 months ago
JSON representation
A music website built with django and react
- Host: GitHub
- URL: https://github.com/victor823543/musicproject_react
- Owner: victor823543
- Created: 2024-02-29T22:32:17.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-04-04T17:28:40.000Z (10 months ago)
- Last Synced: 2024-04-04T18:29:14.733Z (10 months ago)
- Language: JavaScript
- Homepage:
- Size: 43.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Get started
## Install dependencies
**Install all dependencies for the backend and create a virtual environment by running the commands:**
`python3 -m venv venv`
`source venv/bin/activate` for macOS or Linux and `venv\Scripts\activate` for Windows (activating the virtual environment)
`pip install -r requirements.txt` (might need to use pip3 for macOS and Linux)**Install all dependencies for the frontend by changing directory to the frontend folder and running the command:**
`npm install`## Run server
**For backend:**
Change directory to backend/music/ and run the command:
`python3 manage.py runserver`**For frontend:**
Change directory to frontend/ and run the command:
`npm run dev`