Coder Social home page Coder Social logo

myradio's Introduction

MyRadio

Hey! You've stumbled upon URY's web management system for all of its operations. Internally called MyURY, this will be generalised and documented over the coming months so that it will hopefully be usable for anyone wanting to start their own community or student radio venture.

MyRadio is part of a suite of upcoming public projects, including:

  • iTones, our liquidsoap sustainer system
  • loggerng, our python audio logging and retriving system
  • Bootstrapping scripts for setting up and configuring all the dependencies

Quickstart

Install Apache2, PHP and PostgreSQL on your prefered *nix distro. Or Windows, if you're into that. MyRadio has been tested with Ubuntu and FreeBSD.

Edit your Apache config as follows (where /usr/local/www/myradio is your checkout of this repository):

Alias /myradio /usr/local/www/MyRadio/src/Public

<Directory /usr/local/www/MyRadio/src/Public>
   Require all granted
   AllowOverride None
</Directory>

Alias /api /usr/local/www/MyRadio/src/PublicAPI
<Directory /usr/local/www/MyRadio/src/PublicAPI>
  Require all granted
  AllowOverride None
  RewriteEngine On
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^ /api/index.php [QSA,L]
</Directory>

Restart Apache2, go to http://hostname/myradio and follow the instructions.

For a new postgresql server, run the following after:

pg_createcluster [YOUR_POSTGRES_VERSION] myradio
su postgres
psql
CREATE USER myradio WITH password '[A_STRONG_PASSWORD]';
CREATE DATABASE myradio WITH OWNER=myradio;

MyRadio uses GitHub Flow as a development workflow: https://guides.github.com/overviews/flow/

myradio's People

Contributors

adfw avatar ajdurant avatar dincahill avatar eiron avatar liamfraser avatar lloydw93 avatar lordaro avatar mattwindsor91 avatar mattwithonet avatar taneb avatar top-cat avatar wlcx avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.