This repository contains the source code of the Freesound website.
Freesound is a project by the Music Technology Group (MTG), Universitat Pompeu Fabra (UPF).
All the source code in this repository is licensed under the GNU Affero General Public License v3. Some of the dependencies might have their own licenses. See the _LICENSE folder for more details.
For a list of authors please check out the contributors page.
Freesound is composed of a number of different services which can be run and orchestrated using Docker. The main service is provided by the web
container which runs the Freesound Django application. Check out this blog post for some information about the Freesound technology stack. If you're going to do development on Freesound, please check the DEVELOPERS file for some guidelines.
Below are instructions for setting up a local Freesound installation for development. It is assumed that you have a working Docker installation.
-
Clone source code repository
git clone [email protected]:MTG/freesound.git cd freesound
-
Create a directory named
freesound-data
inside the repository foldermkdir freesound-data
-
Download the Freesound development data zip file (~20GB) and uncompress it inside
freesound-data
. You should get permission to download this file from Freesound admins. File structure should look like this:freesound/ freesound/freesound-data/ freesound/freesound-data/analysis/ freesound/freesound-data/avatar/ ...
-
Download Freesound development similarity index and the Freesound tag recommendation models and place their contents under
freesound-data/similarity_index/
andfreesound-data/tag_recommendation_models
directories respectively (you'll need to create the directories). You should get permission to download these files from Freesound admins. -
Rename
freesound/local_settings.example.py
file so you can customise Django settings if needed and create a.env
file with your local user UIDcp freesound/local_settings.example.py freesound/local_settings.py echo FS_USER_ID_FROM_ENV=$(id -u) > .env
-
[Optional] Create API credentials for the 3rd party services listed below and add them to your own
freesound/local_settings.py
file (checksettings.py
to know the config parameter names that you need to fill in):- Mapbox
- Recaptcha
-
Build the base Freesound Docker image
make -C docker
-
Build all Docker containers. The first time you run this command can take a while as a number of Docker images need to be downloaded and things need to be installed and compiled.
docker-compose build
-
Download the Freesound development database dump (~50MB), run the database container and load the data into it. You should get permission to download this file from Freesound admins.
docker-compose up -d db cat /path/to/freesound/development/db/dump.sql | docker-compose run --rm db psql -h db -U freesound -d freesound
-
Update database by running Django migrations
docker-compose run --rm web python manage.py migrate
-
Create a superuser account to be able to login to the local Freesound website and to the admin site
docker-compose run --rm web python manage.py createsuperuser
-
Run all services 🎉
docker-compose up
This might take significant time as many services will be started at once. When done, you should be able to point your browser to http://localhost:8000
and see the Freesound website up and running!
-
Build the search index so you can, well, search
# Open a new terminal window so the services started in the previous step keep running docker-compose run --rm web python manage.py reindex_solr docker-compose run --rm web python manage.py reindex_solr_forum
After following the steps you'll have a fully functional Freesound installation up and running, including the search, sound similarity and audio processing features (and more!). As a sort of bonus step, you can run Django's shell plus command like this:
docker-compose run --rm web python manage.py shell_plus
Because the web
container mounts a named volume for the home folder of the user running the shell plus process, command history should be kept between container runs :)
In most situations it is possible that not all Freesound services need to be running. You can selectively run services using the docker-compose
interface and this will speed up the startup time. For example, the most common service you'll need for development will be the web
container and (maybe) search
. Then you can do:
docker-compose up web search
You can run tests using the Django test runner in the web
container like that:
docker-compose run --rm web python manage.py test --settings=freesound.test_settings