Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nypublicradio/nypr-ads
https://github.com/nypublicradio/nypr-ads
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/nypublicradio/nypr-ads
- Owner: nypublicradio
- License: mit
- Created: 2017-03-10T19:30:29.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-08-04T19:15:09.000Z (over 1 year ago)
- Last Synced: 2024-12-14T19:21:17.791Z (about 1 month ago)
- Language: JavaScript
- Homepage: https://nypublicradio.github.io/nypr-ads/docs/
- Size: 3.86 MB
- Stars: 1
- Watchers: 23
- Forks: 1
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# nypr-ads
An addon to simplify connecting NYPR web clients to our Google Publisher Ads / Doubleclick For Publishers account.
[Read the docs here.](http://nypublicradio.github.io/nypr-ads/docs)
## Development
Development requires nodejs 6+.
```sh
brew install nvm
nvm install --lts
nvm use --lts
```Install dependencies.
```sh
npm install
```Build and run ember.
_Note: To use your system's global ember simply type `ember`_
```sh
./node_modules/.bin/ember build
./node_modules/.bin/ember serve
```## Tests
Tests require `google-chrome` and `chromedriver`.
```sh
brew cask install google-chrome
brew cask install chromedriver
```Execute tests.
```sh
./node_modules/.bin/ember test
```