Skip to content

AdrienRedon/Amoki-Music

 
 

Repository files navigation

Amoki-Music

Circle CICoverage Status External Requirements

  • libevent
    • On ubuntu :
     apt-get install redis-server
     sudo apt-get install libpcre3 libpcre3-dev
    

Install

  • git clone git@github.com:Amoki/Amoki-Music.git : retrieve the repo
  • cd Amoki-Music
  • virtualenv -p python3 --no-site-packages .v_env : create a virtual-env for python code
  • source .v_env/bin/activate : activate the v_env
  • pip install -r requirements.txt : install all requirements
  • ./manage.py migrate : migrate DB
  • ./manage.py createsuperuser : add your own admin.

Configure

env:

export YOUTUBE_KEY="your Youtube API key"
export SOUNDCLOUD_KEY="your Soundcloud API key"

or

SET YOUTUBE_KEY="your youtube API key"
SET SOUNDCLOUD_KEY="your Soundcloud API key"

How to use

In development

Start the server

python manage.py runserver <ip:port>

Connect to your server and let you be guided by our awesome UI

In production

configure nginx

location / {
    include /etc/nginx/uwsgi_params;
    uwsgi_pass unix:/path/to/django.socket;
}

location /ws/ {
    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "upgrade";
    proxy_pass http://unix:/path/to/web.socket;
}

Update production

git pull origin master
python manage.py collectstatic
yes
python manage.py migrate

Start uwsgi

uwsgi --virtualenv /path/to/virtualenv --socket /path/to/django.socket --buffer-size=32768 --workers=5 --master --module wsgi_django
uwsgi --virtualenv /path/to/virtualenv --http-socket /path/to/web.socket --gevent 1000 --http-websockets --workers=2 --master --module wsgi_websocket

About

Open an url on the server (server by Django)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 56.2%
  • JavaScript 23.6%
  • HTML 13.6%
  • CSS 6.6%