The Cablecast Public Site is an Open Source web application that consumes the Cablecast API. It is included with Cablecast versions 6.0.0
and greater. We welcome community contributions, but please keep in mind that not all features will be accepted. We hope stations will fork this repository and customize this site to fit whatever needs they may have. Documentation and examples will be released soon, and this README will be updated with links to these resources.
If you have any problems with this application please use the GitHub issue tracker to file issues.
This application is written in the Ember JS javascript framework. Below are instructions for how to get started developing this application, as well as some useful links for getting started with Ember.
You will need the following things properly installed on your computer.
- Git
- Node.js (with npm)
- Ember CLI
- Google Chrome
git clone <repository-url>
this repositorycd my-project
npm install
ember server
- Visit your app at http://localhost:4200.
- Visit your tests at http://localhost:4200/tests.
Make use of the many generators for code, try ember help generate
for more details
Mirage does not work with fastboot, tests must be run with fastboot off.
FASTBOOT_DISABLED=true ember test
FASTBOOT_DISABLED=true ember test --server
npm run lint:hbs
npm run lint:js
npm run lint:js -- --fix
ember build
(development)ember build --environment production
(production)
Specify what it takes to deploy your app.