Stream and listen to music online for free with SoundCloud
docker compose up
- Clone the Project
git clone https://github.com/SepehrBazyar/SoundCloud.git
- Create a Virtual Environment("venv" is a Selective Name).
python3 -m venv venv
- Activate the Interpreter of the Virtual Environment
- Windows:
venv\Script\active
- Linux:
source venv/bin/active
- Install the Requirements
pip install -r requirements/production.txt
- Create a
.env
file in root directory and add your created config:
DEBUG = <project-debug-status>
SECRET_KEY = <django-insecure-secret-key>
- After that, migration:
python3 manage.py migrate
- Write the Following Command to Run the Server
python3 manage.py runserver
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.