Skip to content

Instantly share code, notes, and snippets.

@josemarluedke
Last active September 27, 2019 15:30
Show Gist options
  • Save josemarluedke/12845ba59ac40da525c599c69b09188b to your computer and use it in GitHub Desktop.
Save josemarluedke/12845ba59ac40da525c599c69b09188b to your computer and use it in GitHub Desktop.
app
├── app.js
├── authenticated-route.ts
├── authenticators
│ ├── oauth2-authorization-code.ts
│ └── oauth2-password.ts
├── breakpoints.js
|── components
│   ├── change-password-form
│   │   ├── index.ts
│   │   ├── mutation.graphql
│   │   ├── index.hbs
│   │   └── validations.ts
│   ├── copy-input
│   │   ├── index.ts
│   │   └── index.hbs
│   ├── credits-list
│   │   ├── index.ts
│   │   ├── mutation.graphql
│   │   ├── query.graphql
│   │   ├── styles.scss
│   │   └── index.hbs
│   ├── cta-card
│   │   ├── styles.scss
│   │   ├── survey-cta
│   │   │   └── index.hbs
│   │   └── index.hbs
│   ├── display-flash-messages
│   │   ├── index.ts
│   │   └── index.hbs
│   ├── display-postal-address
│   │   ├── index.ts
│   │   └── index.hbs
│   ├── footer
│   │   ├── index.ts
│   │   ├── styles.scss
│   │   └── index.hbs
│   ├── forgot-password-form
│   │   ├── index.ts
│   │   ├── mutation.graphql
│   │   ├── styles.scss
│   │   ├── index.hbs
│   │   └── validations.ts
│   ├── founder-application-form
│   │   ├── index.ts
│   │   ├── mutation.graphql
│   │   ├── options.ts
│   │   ├── styles.scss
│   │   ├── index.hbs
│   │   └── validations.ts
│   ├── founder-callout-card
│   │   ├── styles.scss
│   │   └── index.hbs
│   ├── hesitation-form
│   │   ├── index.ts
│   │   ├── mutation.graphql
│   │   ├── styles.scss
│   │   ├── index.hbs
│   │   └── validations.ts
│   ├── how-it-works
│   │   ├── styles.scss
│   │   └── index.hbs
│   ├── layouts
│   │   ├── auth
│   │   │   ├── styles.scss
│   │   │   └── index.hbs
│   │   ├── full-screen
│   │   │   ├── styles.scss
│   │   │   └── index.hbs
│   │   └── primary
│   │   ├── index.ts
│   │   ├── ribbon
│   │   │   ├── index.ts
│   │   │   ├── styles.scss
│   │   │   └── index.hbs
│   │   ├── styles.scss
│   │   └── index.hbs
│   ├── login-form
│   │   ├── index.ts
│   │   ├── request-authorization-code.graphql
│   │   ├── styles.scss
│   │   └── index.hbs
│   ├── main-billboard
│   │   ├── index.ts
│   │   ├── styles.scss
│   │   └── index.hbs
│   ├── modal-form
│   │   ├── body
│   │   │   ├── styles.scss
│   │   │   └── index.hbs
│   │   ├── footer
│   │   │   ├── styles.scss
│   │   │   └── index.hbs
│   │   ├── header
│   │   │   ├── styles.scss
│   │   │   └── index.hbs
│   │   ├── styles.scss
│   │   └── index.hbs
│   ├── partner-create-form
│   │   ├── index.ts
│   │   ├── mutation.graphql
│   │   ├── styles.scss
│   │   ├── index.hbs
│   │   └── validations.ts
│   ├── password-form
│   │   ├── index.ts
│   │   ├── reset-password-form
│   │   │   ├── index.ts
│   │   │   ├── mutation.graphql
│   │   │   ├── styles.scss
│   │   │   └── index.hbs
│   │   ├── set-password-form
│   │   │   ├── index.ts
│   │   │   ├── mutation.graphql
│   │   │   ├── styles.scss
│   │   │   └── index.hbs
│   │   ├── styles.scss
│   │   ├── index.hbs
│   │   └── validations.ts
│   ├── personal-info
│   │   ├── index.ts
│   │   ├── styles.scss
│   │   └── index.hbs
│   ├── pre-order
│   │   ├── agreement
│   │   │   ├── cancel.graphql
│   │   │   ├── index.ts
│   │   │   ├── styles.scss
│   │   │   ├── index.hbs
│   │   │   └── update.graphql
│   │   ├── callout-card
│   │   │   ├── cancel.graphql
│   │   │   ├── index.ts
│   │   │   ├── styles.scss
│   │   │   └── index.hbs
│   │   ├── callout-modal
│   │   │   ├── index.ts
│   │   │   ├── styles.scss
│   │   │   └── index.hbs
│   │   ├── payment
│   │   │   ├── index.ts
│   │   │   ├── mutation.graphql
│   │   │   ├── styles.scss
│   │   │   └── index.hbs
│   │   └── property-owner
│   │   ├── index.ts
│   │   ├── mutation.graphql
│   │   ├── styles.scss
│   │   └── index.hbs
│   ├── re-captcha
│   │   ├── index.ts
│   │   ├── styles.scss
│   │   └── index.hbs
│   ├── referral-info
│   │   ├── index.ts
│   │   ├── styles.scss
│   │   └── index.hbs
│   ├── request-email-verification-link
│   │   ├── index.ts
│   │   ├── mutation.graphql
│   │   └── index.hbs
│   ├── request-refund-modal
│   │   ├── index.ts
│   │   └── index.hbs
│   ├── step-progress-indicator
│   │   ├── styles.scss
│   │   └── index.hbs
│   ├── survey-form
│   │   ├── index.ts
│   │   ├── mutation.graphql
│   │   ├── options.ts
│   │   ├── styles.scss
│   │   ├── index.hbs
│   │   └── validations.ts
│   ├── theme-settings
│   │   ├── index.ts
│   │   └── index.hbs
│   ├── user-avatar
│   │   ├── index.ts
│   │   ├── styles.scss
│   │   └── index.hbs
│   ├── user-avatar-upload
│   │   ├── add-avatar.graphql
│   │   ├── index.ts
│   │   ├── remote-avatar.graphql
│   │   ├── styles.scss
│   │   └── index.hbs
│   ├── user-confirmation-ribbon
│   │   └── index.hbs
│   ├── user-create-form
│   │   ├── index.ts
│   │   ├── mutation.graphql
│   │   ├── styles.scss
│   │   ├── index.hbs
│   │   ├── validate-referral-code.graphql
│   │   └── validations.ts
│   └── user-dropdown
│   ├── index.ts
│   ├── styles.scss
│   └── index.hbs
├── config
│ └── environment.d.ts
├── helpers
│ ├── community.ts
│ ├── fastboot-set-title.ts
│ ├── first-char.ts
│ ├── index-of.ts
│ ├── parse-newline.ts
│ └── style.ts
├── index.html
├── instance-initializers
│ └── apollo-cache-shoebox.ts
├── modifiers
│ └── popup-link.ts
├── pods
│ ├── apollo
│ │ └── service.ts
│ ├── apollo-upload
│ │ └── service.ts
│ ├── application
│ │ ├── controller.ts
│ │ ├── route.ts
│ │ └── template.hbs
│ ├── application-error
│ │ ├── styles.scss
│ │ └── template.hbs
│ ├── authenticate
│ │ ├── controller.ts
│ │ ├── route.ts
│ │ ├── styles.scss
│ │ └── template.hbs
│ ├── community
│ │ ├── query.graphql
│ │ ├── service.ts
│ │ └── theme.ts
│ ├── confirm-email
│ │ ├── confirm.graphql
│ │ ├── route.ts
│ │ ├── styles.scss
│ │ └── template.hbs
│ ├── create-account
│ │ ├── controller.ts
│ │ ├── route.ts
│ │ └── template.hbs
│ ├── current-user
│ │ ├── query.graphql
│ │ └── service.ts
│ ├── dashboard
│ │ ├── controller.ts
│ │ ├── query.graphql
│ │ ├── route.ts
│ │ ├── styles.scss
│ │ └── template.hbs
│ ├── error-handler
│ │ └── service.ts
│ ├── forgot-password
│ │ ├── route.ts
│ │ └── template.hbs
│ ├── founders
│ │ ├── apply
│ │ │ ├── controller.ts
│ │ │ ├── route.ts
│ │ │ ├── styles.scss
│ │ │ └── template.hbs
│ │ ├── form
│ │ │ ├── route.ts
│ │ │ └── template.hbs
│ │ └── index
│ │ ├── route.ts
│ │ ├── styles.scss
│ │ └── template.hbs
│ ├── index
│ │ ├── controller.ts
│ │ ├── route.ts
│ │ ├── styles.scss
│ │ └── template.hbs
│ ├── login
│ │ ├── route.ts
│ │ └── template.hbs
│ ├── not-found
│ │ ├── route.ts
│ │ ├── styles.scss
│ │ └── template.hbs
│ ├── partners
│ │ ├── route.ts
│ │ ├── styles.scss
│ │ └── template.hbs
│ ├── pre-order
│ │ ├── controller.ts
│ │ ├── route.ts
│ │ ├── styles.scss
│ │ └── template.hbs
│ ├── referred
│ │ ├── controller.ts
│ │ ├── route.ts
│ │ ├── styles.scss
│ │ └── template.hbs
│ ├── reset-password
│ │ ├── route.ts
│ │ └── template.hbs
│ ├── set-password
│ │ ├── controller.ts
│ │ ├── route.ts
│ │ └── template.hbs
│ ├── survey
│ │ ├── route.ts
│ │ ├── styles.scss
│ │ └── template.hbs
│ └── vision
│ ├── route.ts
│ ├── styles.scss
│ └── template.hbs
├── resolver.js
├── router.js
├── session-stores
│ └── application.js
├── styles
│ .....
├── templates
│ └── head.hbs
└── utils
├── password-validation-helpers.ts
└── scroll-to-top.ts
└── ........
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment