Skip to content
Snippets Groups Projects
Select Git revision
  • 170-rss-feed
  • 170-channels-ui
  • develop default protected
  • 107-actor-api
  • rely-on-musicbrainz
  • fix-broken-playlist-cards
  • master
  • ollie/funkwhale-documentation-fixes
  • vuln-testing
  • plugins-v2
  • limit-album-tracks
  • 925-flac-transcoding
  • 865-sql-optimization
  • 890-notification
  • 839-donation-link
  • landing-page
  • plugins
  • add-new-shortcuts
  • 735-table-truncate
  • webdav
  • 0.20.1
  • 0.20.0
  • 0.20.0-rc1
  • 0.19.1
  • 0.19.0
  • 0.19.0-rc2
  • 0.19.0-rc1
  • 0.18.3
  • 0.18.2
  • 0.18.1
  • 0.18
  • 0.17
  • 0.16.3
  • 0.16.2
  • 0.16.1
  • 0.16
  • 0.15
  • 0.14.2
  • 0.14.1
  • 0.14
40 results

funkwhale

  • Clone with SSH
  • Clone with HTTPS
  • Forked from funkwhale / funkwhale
    7882 commits behind the upstream repository.
    user avatar
    Eliot Berriot authored
    3a19505c
    History

    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