├── .gitignore ├── LICENSE ├── README.md ├── app ├── .meteor │ ├── .finished-upgraders │ ├── .gitignore │ ├── .id │ ├── packages │ ├── platforms │ ├── release │ └── versions ├── client │ ├── common.css │ ├── global-helper.js │ ├── pages │ │ ├── 404.html │ │ ├── buy-buttons.js │ │ ├── disqus.html │ │ ├── disqus.js │ │ ├── layout.html │ │ ├── loading.html │ │ ├── main.css │ │ ├── sign-in-buttons.js │ │ └── templates │ │ │ ├── chapter │ │ │ ├── chapter.css │ │ │ └── chapter.html │ │ │ ├── info │ │ │ └── info.html │ │ │ ├── landing-page │ │ │ ├── landing-page.css │ │ │ ├── landing-page.html │ │ │ └── landing-page.js │ │ │ └── video-chapter │ │ │ ├── video-chapter.css │ │ │ ├── video-chapter.html │ │ │ └── video-chapter.js │ ├── routes.js │ └── services │ │ ├── account-service.js │ │ └── buy-service.js ├── collections │ ├── client │ │ └── collections.js │ └── server │ │ └── collections.js ├── lib │ └── accounts.js ├── packages │ ├── aws-cloudfront-sign │ │ ├── .npm │ │ │ └── package │ │ │ │ ├── .gitignore │ │ │ │ ├── README │ │ │ │ └── npm-shrinkwrap.json │ │ ├── main.js │ │ ├── package.js │ │ ├── readme.md │ │ ├── test.sh │ │ └── tests │ │ │ └── main-spec.js │ ├── fixtures │ │ ├── README.md │ │ ├── client-fixtures.js │ │ ├── fixtures.js │ │ ├── package.js │ │ └── seed-data.js │ └── letterpress-core │ │ ├── common.js │ │ └── package.js ├── private │ └── pk-APKAI6S56DROMMGID6BA.pem ├── public │ ├── cover.jpg │ ├── favicon.ico │ └── poster.png ├── server │ ├── api │ │ ├── accounts-api.js │ │ ├── content-api.js │ │ ├── payment-api.js │ │ └── webhooks-api.js │ ├── configure-email-templates.js │ ├── seed-data.js │ └── services │ │ ├── account-service.js │ │ └── buy-service.js └── tests │ ├── cucumber │ ├── .gitignore │ ├── features │ │ ├── Administrators │ │ │ ├── Audit.feature │ │ │ └── step_definitions │ │ │ │ └── Audit.js │ │ ├── Authors │ │ │ ├── Create a content page.feature │ │ │ ├── Create a landing page.feature │ │ │ ├── Setup a one-time charge.feature │ │ │ ├── Setup a subscription.feature │ │ │ └── step_definitions │ │ │ │ ├── content-steps.js │ │ │ │ └── payment-steps.js │ │ ├── Users │ │ │ ├── Create account.feature │ │ │ ├── Discuss premium content.feature │ │ │ ├── View premium content.feature │ │ │ └── step_definitions │ │ │ │ ├── create-account.js │ │ │ │ ├── discussions-steps.js │ │ │ │ └── premium-content.js │ │ └── _support │ │ │ ├── authentication-helper.js │ │ │ └── hooks.js │ └── package.json │ └── jasmine │ ├── client │ └── integration │ │ ├── _support │ │ ├── _wait-for-router-helper.js │ │ ├── before-common.js │ │ └── iron-router-stub.js │ │ ├── global-helper-spec.js │ │ ├── landing-page-spec.js │ │ ├── layout-spec.js │ │ ├── routes-spec.js │ │ ├── services │ │ ├── account-service-specs.js │ │ └── buy-service-spec.js │ │ └── video-chapter-spec.js │ └── server │ └── integration │ ├── _support │ ├── before-common.js │ └── json-stub.js │ ├── api │ ├── accounts-api-spec.js │ ├── content-api-spec.js │ ├── payment-api-spec.js │ └── webhook-api-spec.js │ ├── pages-collection-spec.js │ ├── pages-publication-spec.js │ └── services │ ├── account-service-spec.js │ └── buy-service-spec.js ├── circle.yml ├── environments ├── build │ ├── settings.json │ └── velocity.js ├── local │ └── settings.json └── production │ ├── mup.json │ └── settings.json └── run.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/README.md -------------------------------------------------------------------------------- /app/.meteor/.finished-upgraders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/.meteor/.finished-upgraders -------------------------------------------------------------------------------- /app/.meteor/.gitignore: -------------------------------------------------------------------------------- 1 | local 2 | -------------------------------------------------------------------------------- /app/.meteor/.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/.meteor/.id -------------------------------------------------------------------------------- /app/.meteor/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/.meteor/packages -------------------------------------------------------------------------------- /app/.meteor/platforms: -------------------------------------------------------------------------------- 1 | server 2 | browser 3 | -------------------------------------------------------------------------------- /app/.meteor/release: -------------------------------------------------------------------------------- 1 | METEOR@1.1.0.3 2 | -------------------------------------------------------------------------------- /app/.meteor/versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/.meteor/versions -------------------------------------------------------------------------------- /app/client/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/client/common.css -------------------------------------------------------------------------------- /app/client/global-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/client/global-helper.js -------------------------------------------------------------------------------- /app/client/pages/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/client/pages/404.html -------------------------------------------------------------------------------- /app/client/pages/buy-buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/client/pages/buy-buttons.js -------------------------------------------------------------------------------- /app/client/pages/disqus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/client/pages/disqus.html -------------------------------------------------------------------------------- /app/client/pages/disqus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/client/pages/disqus.js -------------------------------------------------------------------------------- /app/client/pages/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/client/pages/layout.html -------------------------------------------------------------------------------- /app/client/pages/loading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/client/pages/loading.html -------------------------------------------------------------------------------- /app/client/pages/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/client/pages/main.css -------------------------------------------------------------------------------- /app/client/pages/sign-in-buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/client/pages/sign-in-buttons.js -------------------------------------------------------------------------------- /app/client/pages/templates/chapter/chapter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/client/pages/templates/chapter/chapter.css -------------------------------------------------------------------------------- /app/client/pages/templates/chapter/chapter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/client/pages/templates/chapter/chapter.html -------------------------------------------------------------------------------- /app/client/pages/templates/info/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/client/pages/templates/info/info.html -------------------------------------------------------------------------------- /app/client/pages/templates/landing-page/landing-page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/client/pages/templates/landing-page/landing-page.css -------------------------------------------------------------------------------- /app/client/pages/templates/landing-page/landing-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/client/pages/templates/landing-page/landing-page.html -------------------------------------------------------------------------------- /app/client/pages/templates/landing-page/landing-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/client/pages/templates/landing-page/landing-page.js -------------------------------------------------------------------------------- /app/client/pages/templates/video-chapter/video-chapter.css: -------------------------------------------------------------------------------- 1 | .video-chapter { 2 | } -------------------------------------------------------------------------------- /app/client/pages/templates/video-chapter/video-chapter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/client/pages/templates/video-chapter/video-chapter.html -------------------------------------------------------------------------------- /app/client/pages/templates/video-chapter/video-chapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/client/pages/templates/video-chapter/video-chapter.js -------------------------------------------------------------------------------- /app/client/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/client/routes.js -------------------------------------------------------------------------------- /app/client/services/account-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/client/services/account-service.js -------------------------------------------------------------------------------- /app/client/services/buy-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/client/services/buy-service.js -------------------------------------------------------------------------------- /app/collections/client/collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/collections/client/collections.js -------------------------------------------------------------------------------- /app/collections/server/collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/collections/server/collections.js -------------------------------------------------------------------------------- /app/lib/accounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/lib/accounts.js -------------------------------------------------------------------------------- /app/packages/aws-cloudfront-sign/.npm/package/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /app/packages/aws-cloudfront-sign/.npm/package/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/packages/aws-cloudfront-sign/.npm/package/README -------------------------------------------------------------------------------- /app/packages/aws-cloudfront-sign/.npm/package/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/packages/aws-cloudfront-sign/.npm/package/npm-shrinkwrap.json -------------------------------------------------------------------------------- /app/packages/aws-cloudfront-sign/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/packages/aws-cloudfront-sign/main.js -------------------------------------------------------------------------------- /app/packages/aws-cloudfront-sign/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/packages/aws-cloudfront-sign/package.js -------------------------------------------------------------------------------- /app/packages/aws-cloudfront-sign/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/packages/aws-cloudfront-sign/readme.md -------------------------------------------------------------------------------- /app/packages/aws-cloudfront-sign/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/packages/aws-cloudfront-sign/test.sh -------------------------------------------------------------------------------- /app/packages/aws-cloudfront-sign/tests/main-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/packages/aws-cloudfront-sign/tests/main-spec.js -------------------------------------------------------------------------------- /app/packages/fixtures/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packages/fixtures/client-fixtures.js: -------------------------------------------------------------------------------- 1 | Meteor.settings.public.disqus = null; -------------------------------------------------------------------------------- /app/packages/fixtures/fixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/packages/fixtures/fixtures.js -------------------------------------------------------------------------------- /app/packages/fixtures/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/packages/fixtures/package.js -------------------------------------------------------------------------------- /app/packages/fixtures/seed-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/packages/fixtures/seed-data.js -------------------------------------------------------------------------------- /app/packages/letterpress-core/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/packages/letterpress-core/common.js -------------------------------------------------------------------------------- /app/packages/letterpress-core/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/packages/letterpress-core/package.js -------------------------------------------------------------------------------- /app/private/pk-APKAI6S56DROMMGID6BA.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/private/pk-APKAI6S56DROMMGID6BA.pem -------------------------------------------------------------------------------- /app/public/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/public/cover.jpg -------------------------------------------------------------------------------- /app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/public/favicon.ico -------------------------------------------------------------------------------- /app/public/poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/public/poster.png -------------------------------------------------------------------------------- /app/server/api/accounts-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/server/api/accounts-api.js -------------------------------------------------------------------------------- /app/server/api/content-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/server/api/content-api.js -------------------------------------------------------------------------------- /app/server/api/payment-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/server/api/payment-api.js -------------------------------------------------------------------------------- /app/server/api/webhooks-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/server/api/webhooks-api.js -------------------------------------------------------------------------------- /app/server/configure-email-templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/server/configure-email-templates.js -------------------------------------------------------------------------------- /app/server/seed-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/server/seed-data.js -------------------------------------------------------------------------------- /app/server/services/account-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/server/services/account-service.js -------------------------------------------------------------------------------- /app/server/services/buy-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/server/services/buy-service.js -------------------------------------------------------------------------------- /app/tests/cucumber/.gitignore: -------------------------------------------------------------------------------- 1 | .screenshots 2 | node_modules -------------------------------------------------------------------------------- /app/tests/cucumber/features/Administrators/Audit.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/cucumber/features/Administrators/Audit.feature -------------------------------------------------------------------------------- /app/tests/cucumber/features/Administrators/step_definitions/Audit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/cucumber/features/Administrators/step_definitions/Audit.js -------------------------------------------------------------------------------- /app/tests/cucumber/features/Authors/Create a content page.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/cucumber/features/Authors/Create a content page.feature -------------------------------------------------------------------------------- /app/tests/cucumber/features/Authors/Create a landing page.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/cucumber/features/Authors/Create a landing page.feature -------------------------------------------------------------------------------- /app/tests/cucumber/features/Authors/Setup a one-time charge.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/cucumber/features/Authors/Setup a one-time charge.feature -------------------------------------------------------------------------------- /app/tests/cucumber/features/Authors/Setup a subscription.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/cucumber/features/Authors/Setup a subscription.feature -------------------------------------------------------------------------------- /app/tests/cucumber/features/Authors/step_definitions/content-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/cucumber/features/Authors/step_definitions/content-steps.js -------------------------------------------------------------------------------- /app/tests/cucumber/features/Authors/step_definitions/payment-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/cucumber/features/Authors/step_definitions/payment-steps.js -------------------------------------------------------------------------------- /app/tests/cucumber/features/Users/Create account.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/cucumber/features/Users/Create account.feature -------------------------------------------------------------------------------- /app/tests/cucumber/features/Users/Discuss premium content.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/cucumber/features/Users/Discuss premium content.feature -------------------------------------------------------------------------------- /app/tests/cucumber/features/Users/View premium content.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/cucumber/features/Users/View premium content.feature -------------------------------------------------------------------------------- /app/tests/cucumber/features/Users/step_definitions/create-account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/cucumber/features/Users/step_definitions/create-account.js -------------------------------------------------------------------------------- /app/tests/cucumber/features/Users/step_definitions/discussions-steps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/cucumber/features/Users/step_definitions/discussions-steps.js -------------------------------------------------------------------------------- /app/tests/cucumber/features/Users/step_definitions/premium-content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/cucumber/features/Users/step_definitions/premium-content.js -------------------------------------------------------------------------------- /app/tests/cucumber/features/_support/authentication-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/cucumber/features/_support/authentication-helper.js -------------------------------------------------------------------------------- /app/tests/cucumber/features/_support/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/cucumber/features/_support/hooks.js -------------------------------------------------------------------------------- /app/tests/cucumber/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/cucumber/package.json -------------------------------------------------------------------------------- /app/tests/jasmine/client/integration/_support/_wait-for-router-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/jasmine/client/integration/_support/_wait-for-router-helper.js -------------------------------------------------------------------------------- /app/tests/jasmine/client/integration/_support/before-common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/jasmine/client/integration/_support/before-common.js -------------------------------------------------------------------------------- /app/tests/jasmine/client/integration/_support/iron-router-stub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/jasmine/client/integration/_support/iron-router-stub.js -------------------------------------------------------------------------------- /app/tests/jasmine/client/integration/global-helper-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/jasmine/client/integration/global-helper-spec.js -------------------------------------------------------------------------------- /app/tests/jasmine/client/integration/landing-page-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/jasmine/client/integration/landing-page-spec.js -------------------------------------------------------------------------------- /app/tests/jasmine/client/integration/layout-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/jasmine/client/integration/layout-spec.js -------------------------------------------------------------------------------- /app/tests/jasmine/client/integration/routes-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/jasmine/client/integration/routes-spec.js -------------------------------------------------------------------------------- /app/tests/jasmine/client/integration/services/account-service-specs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/jasmine/client/integration/services/account-service-specs.js -------------------------------------------------------------------------------- /app/tests/jasmine/client/integration/services/buy-service-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/jasmine/client/integration/services/buy-service-spec.js -------------------------------------------------------------------------------- /app/tests/jasmine/client/integration/video-chapter-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/jasmine/client/integration/video-chapter-spec.js -------------------------------------------------------------------------------- /app/tests/jasmine/server/integration/_support/before-common.js: -------------------------------------------------------------------------------- 1 | beforeAll(function () { 2 | VelocityHelpers.exportGlobals(); 3 | }); 4 | -------------------------------------------------------------------------------- /app/tests/jasmine/server/integration/_support/json-stub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/jasmine/server/integration/_support/json-stub.js -------------------------------------------------------------------------------- /app/tests/jasmine/server/integration/api/accounts-api-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/jasmine/server/integration/api/accounts-api-spec.js -------------------------------------------------------------------------------- /app/tests/jasmine/server/integration/api/content-api-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/jasmine/server/integration/api/content-api-spec.js -------------------------------------------------------------------------------- /app/tests/jasmine/server/integration/api/payment-api-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/jasmine/server/integration/api/payment-api-spec.js -------------------------------------------------------------------------------- /app/tests/jasmine/server/integration/api/webhook-api-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/jasmine/server/integration/api/webhook-api-spec.js -------------------------------------------------------------------------------- /app/tests/jasmine/server/integration/pages-collection-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/jasmine/server/integration/pages-collection-spec.js -------------------------------------------------------------------------------- /app/tests/jasmine/server/integration/pages-publication-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/jasmine/server/integration/pages-publication-spec.js -------------------------------------------------------------------------------- /app/tests/jasmine/server/integration/services/account-service-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/jasmine/server/integration/services/account-service-spec.js -------------------------------------------------------------------------------- /app/tests/jasmine/server/integration/services/buy-service-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/app/tests/jasmine/server/integration/services/buy-service-spec.js -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/circle.yml -------------------------------------------------------------------------------- /environments/build/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/environments/build/settings.json -------------------------------------------------------------------------------- /environments/build/velocity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/environments/build/velocity.js -------------------------------------------------------------------------------- /environments/local/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/environments/local/settings.json -------------------------------------------------------------------------------- /environments/production/mup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/environments/production/mup.json -------------------------------------------------------------------------------- /environments/production/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/environments/production/settings.json -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamHatoum/Letterpress/HEAD/run.sh --------------------------------------------------------------------------------