Besides characters and animation I also created the sounds for our game.
www.sonniss.com/gameaudiogdc2016/ has been a really helpful resource for that. It's a huge, free-to-use, high-quality soundpack. Especially the gun sounds were really good! Other than that I recorded my own chicken to get some sounds for the main character chicken and the little chicks you want to save as player, which were captured by foxes (yes we had cute little chicks at that time!).

Troughout editing the sounds I used the free Audacity. I want to switch to a different non-destructive Audio workstation at some point, but Audacity was fast to use for me and made it easier. And we had rather little time (5 weeks), so I didn't want to learn too many new tools.
For the music I just looked trough soundcloud for Creative Commons tracks and ended up using this track by Aritus: https://soundcloud.com/aritusmusic/aritus-spirit
Beware it's Future Funk! (kind of) I liked the contrast of a game where you destroy a lot of shit with something more upbeat and funky. And a happy mood was also what we were aiming for, so this song did fit really well in terms of pacing and mood.
Hope you found this useful! I'll post some more devlogs later on, about making weapons for the game and also a bit of PR.
If you want to get updated on the rest of the devlog, you can follow me here on itch.io: https://tinyworlds.itch.io/ or Twitter @tinyruin.
EDIT: Oh also for your Linux users out there, here is a little script to remove the silent parts in any mp3 files in a folder. Saved me a lot of work :)
for f in *.mp3
do
sox $f $f silence 1 0.1 0% reverse silence 1 0.1 0% reverse
done