Skip to content
Snippets Groups Projects
Select Git revision
  • 127-upgrade-doc
  • develop protected
  • master default
  • 0.7
  • 0.6.1
  • 0.6
  • 0.5.4
  • 0.5.3
  • 0.5.2
  • 0.5.1
  • 0.5
  • 0.4
  • 0.3.5
  • 0.3.4
  • 0.3.3
  • 0.3.2
  • 0.3.1
  • 0.3
  • 0.2.6
  • 0.2.5
  • 0.2.4
  • 0.2.3
  • 0.2.2
23 results

funkwhale_api

  • Clone with SSH
  • Clone with HTTPS
  • Forked from funkwhale / funkwhale
    Source project has a limited visibility.

    Funkwhale

    A self-hosted tribute to Grooveshark.com.

    LICENSE: BSD

    Setting up a development environment (docker)

    First of all, pull the repository.

    Then, pull and build all the containers:

    docker-compose -f dev.yml build
    docker-compose -f dev.yml pull

    API setup

    You'll have apply database migrations:

    docker-compose -f dev.yml run celeryworker python manage.py migrate

    And to create an admin user:

    docker-compose -f dev.yml run celeryworker python manage.py createsuperuser

    Launch all services

    Then you can run everything with:

    docker-compose up

    The API server will be accessible at http://localhost:6001, and the front-end at http://localhost:8080.

    Running API tests

    Everything is managed using docker and docker-compose, just run:

    ./api/runtests

    This bash script invoke python manage.py test in a docker container under the hood, so you can use traditional django test arguments and options, such as:

    ./api/runtests funkwhale_api.music   # run a specific app test