This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ParseServer.js | |
import { default as MailProvider } from 'providers/MailProvider'; | |
import { default as DEFAULT_MAIL_ADAPTER } from 'adapters/MailgunAdapter'; | |
// These default templates live in the parse-server repo | |
const DEFAULT_MAIL_TEMPLATES = { | |
"password_reset": { | |
html: jade.compileFile("views/mail/password_reset.html.jade"), | |
text: jade.compileFile("views/mail/password_reset.txt.jade") | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#EXTM3U | |
#EXT-X-VERSION:3 | |
#EXT-X-MEDIA-SEQUENCE:0 | |
#EXT-X-TARGETDURATION:11 | |
#EXTINF:10.026666666667, | |
audio_0_256000/hls/segment_0.ts | |
#EXTINF:6.5066666666667, | |
audio_0_256000/hls/segment_1.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import Router from 'react-routing/src/Router'; | |
import { canUseDOM } from 'fbjs/lib/ExecutionEnvironment'; | |
import http from './core/HttpClient'; | |
import App from './components/App'; | |
import IndexPage from './components/IndexPage'; | |
import NotFoundPage from './components/NotFoundPage'; | |
import ErrorPage from './components/ErrorPage'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! React Starter Kit | MIT License | http://www.reactstarterkit.com/ */ | |
import React from 'react'; | |
import Router from 'react-routing/src/Router'; | |
import { canUseDOM } from 'fbjs/lib/ExecutionEnvironment'; | |
import http from './core/HttpClient'; | |
import App from './components/App'; | |
import IndexPage from './components/IndexPage'; | |
import NotFoundPage from './components/NotFoundPage'; |