Find a file
Zeusking19 f193254dbc Merge pull request #46 from Poniverse/feature/fix_nginx_vm_boot
Resolves #45: start nginx on every VM boot
2015-12-27 18:42:21 +00:00
app Merge pull request #47 from Poniverse/feature/markdown 2015-12-27 18:29:49 +00:00
bootstrap Licensed Pony.fm under the GNU Affero General Public License (AGPL). 2015-10-24 22:17:45 -07:00
config #8: Implemented several tests for the API. 2015-12-24 18:08:49 -08:00
database #8: Implemented auto-publishing and lots of optional fields for the upload endpoint. 2015-12-26 03:40:47 -08:00
public Update credits-dialog.html 2015-12-27 17:59:56 +00:00
resources Allow single line breaks 2015-12-27 18:15:22 +00:00
storage Initial L5.1 commit 2015-08-30 12:26:03 +01:00
tests Resolves #40: Tags included with a file upload are now used and stored. 2015-12-27 07:31:54 -08:00
tools Moved nginx's and MySQL's logs into the "storage" directory. 2015-09-12 16:49:16 -07:00
vagrant Upgraded the dev environment to PHP 7. 2015-12-20 10:30:51 -08:00
.arcconfig Merge rPF91611faead64: Merge the MLP Music Archive import scripts. 2015-09-10 12:15:19 +01:00
.editorconfig Improved track pagination to better handle tons of content, including a "jump to page" button. 2015-10-29 03:24:12 -07:00
.gitattributes Removed non-local configs from this repo. 2015-12-20 04:59:01 -08:00
.gitignore Make changes in regards to #28 2015-12-13 13:42:37 +00:00
artisan Initial L5.1 commit 2015-08-30 12:26:03 +01:00
composer.json #8: Implemented auto-publishing and lots of optional fields for the upload endpoint. 2015-12-26 03:40:47 -08:00
composer.lock #8: Implemented several tests for the API. 2015-12-24 18:08:49 -08:00
gulpfile.js Fixes #10: Use the X-XSRF-TOKEN header globally for AJAX CSRF protection. 2015-11-11 13:45:44 -08:00
LICENSE Licensed Pony.fm under the GNU Affero General Public License (AGPL). 2015-10-24 22:17:45 -07:00
package.json Licensed Pony.fm under the GNU Affero General Public License (AGPL). 2015-10-24 22:17:45 -07:00
phpspec.yml Updated Pony.fm's PHP namespace to Poniverse\Ponyfm. 2015-10-23 18:22:14 -07:00
phpunit.xml #8: Implemented several tests for the API. 2015-12-24 18:08:49 -08:00
README.md Improved the README's "Contributing" section. 2015-11-16 04:20:15 -08:00
server.php Initial L5.1 commit 2015-08-30 12:26:03 +01:00
Vagrantfile Start nginx on every VM boot, fixes #45 2015-12-27 13:40:58 +00:00

Pony.fm Logo

The community for pony fan music.

For artists, Pony.fm features unlimited uploads and downloads, automatic transcoding to a number of audio formats, and synchronized tags in all downloads.

For listeners, Pony.fm offers unlimited streaming and downloading, user-generated playlists, favourite lists, and a way of discovering new music with pony-based taxonomies.

Contributing

If you've run across a bug or have a feature request, open an issue for it.

For general questions and discussions about the site, stop by at the Pony.fm forum.

For quick fixes, go ahead and submit a pull request!

For larger features, it's best to open an issue before sinking a ton of work into building them, to coordinate with Pony.fm's maintainers.

Protip: Looking for a place to jump in and start coding? Try a quickwin issue - these are smaller in scope and easier to tackle if you're unfamiliar with the codebase!

Starting a dev environment

To begin development, you must do three things:

  1. Install the vagrant-hostmanager plugin: vagrant plugin install vagrant-hostmanager

  2. Install the vagrant-bindfs plugin: vagrant plugin install vagrant-bindfs

  3. Create the directory pony.fm.files in the repository's parent directory

  4. Run vagrant up from the folder in which you cloned the repository

  5. Run vagrant ssh, cd /vagrant, and php artisan poni:setup.

  6. Follow the instructions in the "Asset pipeline" section below to set that up.

Once everything is up and running, you'll be able to access the site at http://ponyfm-dev.poni/. You can access the MySQL database by logging into ponyfm-dev.poni:3306 with the username homestead and the password secret. Pony.fm's database is named homestead.

Asset pipeline

Pony.fm uses gulp to mange its asset pipeline.

Important: Run npm and gulp from your host machine and not within the VM. You must first have it installed globally:

npm install -g gulp

And then install all of the required local packages by invoking:

npm install

Finally, build all of the scripts by executing:

gulp build

During development, you should make a point to run "gulp watch". You can do this simply by executing:

gulp watch

This will watch and compile the .less and .coffee files in real time.

Configuring the servers

Pony.fm uses nginx, php-fpm, redis, and MySQL. You can modify the configuration of these services by locating the appropriate config file in the vagrant folder. Once modified, you must reload the configuration by running the appropriate shell script (reload-config.sh) or bat files (reload-config.bat and reload-config.vmware.bat). These scripts simply tell Vagrant to run copy-and-restart-config.sh on the VM.

If you need to change any other configuration file on the VM - copy the entire file over into the vagrant folder, make your changes, and update the copy-and-restart-config.sh script to copy the modified config back into the proper folder. All potential configuration requirements should be represented in the vagrant folder and never only on the VM itself as changes will not be preserved.

NOTE: currently, Redis's configuration is not reloaded by the copy-and-restart-config.sh