Skip to content

Latest commit

 

History

History
46 lines (44 loc) · 1 KB

README.md

File metadata and controls

46 lines (44 loc) · 1 KB

SoundCloud

Stream and listen to music online for free with SoundCloud

How to Run?

Easy Setup by Docker

docker compose up

Installation without Docker

  1. Clone the Project
git clone https://github.com/SepehrBazyar/SoundCloud.git
  1. Create a Virtual Environment("venv" is a Selective Name).
python3 -m venv venv
  1. Activate the Interpreter of the Virtual Environment
    • Windows:
    venv\Script\active
    
    • Linux:
    source venv/bin/active
    
  2. Install the Requirements
pip install -r requirements/production.txt
  1. Create a .env file in root directory and add your created config:
DEBUG = <project-debug-status>
SECRET_KEY = <django-insecure-secret-key>
  1. After that, migration:
python3 manage.py migrate
  1. Write the Following Command to Run the Server
python3 manage.py runserver

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.