Skip to content

Instantly share code, notes, and snippets.

@josemarluedke
Created September 27, 2019 15:18
Show Gist options
  • Save josemarluedke/dea77bf622cc8c871a2094f469def921 to your computer and use it in GitHub Desktop.
Save josemarluedke/dea77bf622cc8c871a2094f469def921 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
├── 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
│   ├── components
│   │   ├── change-password-form
│   │   │   ├── component.ts
│   │   │   ├── mutation.graphql
│   │   │   ├── template.hbs
│   │   │   └── validations.ts
│   │   ├── copy-input
│   │   │   ├── component.ts
│   │   │   └── template.hbs
│   │   ├── credits-list
│   │   │   ├── component.ts
│   │   │   ├── mutation.graphql
│   │   │   ├── query.graphql
│   │   │   ├── styles.scss
│   │   │   └── template.hbs
│   │   ├── cta-card
│   │   │   ├── styles.scss
│   │   │   ├── survey-cta
│   │   │   │   └── template.hbs
│   │   │   └── template.hbs
│   │   ├── display-flash-messages
│   │   │   ├── component.ts
│   │   │   └── template.hbs
│   │   ├── display-postal-address
│   │   │   ├── component.ts
│   │   │   └── template.hbs
│   │   ├── footer
│   │   │   ├── component.ts
│   │   │   ├── styles.scss
│   │   │   └── template.hbs
│   │   ├── forgot-password-form
│   │   │   ├── component.ts
│   │   │   ├── mutation.graphql
│   │   │   ├── styles.scss
│   │   │   ├── template.hbs
│   │   │   └── validations.ts
│   │   ├── founder-application-form
│   │   │   ├── component.ts
│   │   │   ├── mutation.graphql
│   │   │   ├── options.ts
│   │   │   ├── styles.scss
│   │   │   ├── template.hbs
│   │   │   └── validations.ts
│   │   ├── founder-callout-card
│   │   │   ├── styles.scss
│   │   │   └── template.hbs
│   │   ├── hesitation-form
│   │   │   ├── component.ts
│   │   │   ├── mutation.graphql
│   │   │   ├── styles.scss
│   │   │   ├── template.hbs
│   │   │   └── validations.ts
│   │   ├── how-it-works
│   │   │   ├── styles.scss
│   │   │   └── template.hbs
│   │   ├── layouts
│   │   │   ├── auth
│   │   │   │   ├── styles.scss
│   │   │   │   └── template.hbs
│   │   │   ├── full-screen
│   │   │   │   ├── styles.scss
│   │   │   │   └── template.hbs
│   │   │   └── primary
│   │   │   ├── component.ts
│   │   │   ├── ribbon
│   │   │   │   ├── component.ts
│   │   │   │   ├── styles.scss
│   │   │   │   └── template.hbs
│   │   │   ├── styles.scss
│   │   │   └── template.hbs
│   │   ├── login-form
│   │   │   ├── component.ts
│   │   │   ├── request-authorization-code.graphql
│   │   │   ├── styles.scss
│   │   │   └── template.hbs
│   │   ├── main-billboard
│   │   │   ├── component.ts
│   │   │   ├── styles.scss
│   │   │   └── template.hbs
│   │   ├── modal-form
│   │   │   ├── body
│   │   │   │   ├── styles.scss
│   │   │   │   └── template.hbs
│   │   │   ├── footer
│   │   │   │   ├── styles.scss
│   │   │   │   └── template.hbs
│   │   │   ├── header
│   │   │   │   ├── styles.scss
│   │   │   │   └── template.hbs
│   │   │   ├── styles.scss
│   │   │   └── template.hbs
│   │   ├── partner-create-form
│   │   │   ├── component.ts
│   │   │   ├── mutation.graphql
│   │   │   ├── styles.scss
│   │   │   ├── template.hbs
│   │   │   └── validations.ts
│   │   ├── password-form
│   │   │   ├── component.ts
│   │   │   ├── reset-password-form
│   │   │   │   ├── component.ts
│   │   │   │   ├── mutation.graphql
│   │   │   │   ├── styles.scss
│   │   │   │   └── template.hbs
│   │   │   ├── set-password-form
│   │   │   │   ├── component.ts
│   │   │   │   ├── mutation.graphql
│   │   │   │   ├── styles.scss
│   │   │   │   └── template.hbs
│   │   │   ├── styles.scss
│   │   │   ├── template.hbs
│   │   │   └── validations.ts
│   │   ├── personal-info
│   │   │   ├── component.ts
│   │   │   ├── styles.scss
│   │   │   └── template.hbs
│   │   ├── pre-order
│   │   │   ├── agreement
│   │   │   │   ├── cancel.graphql
│   │   │   │   ├── component.ts
│   │   │   │   ├── styles.scss
│   │   │   │   ├── template.hbs
│   │   │   │   └── update.graphql
│   │   │   ├── callout-card
│   │   │   │   ├── cancel.graphql
│   │   │   │   ├── component.ts
│   │   │   │   ├── styles.scss
│   │   │   │   └── template.hbs
│   │   │   ├── callout-modal
│   │   │   │   ├── component.ts
│   │   │   │   ├── styles.scss
│   │   │   │   └── template.hbs
│   │   │   ├── payment
│   │   │   │   ├── component.ts
│   │   │   │   ├── mutation.graphql
│   │   │   │   ├── styles.scss
│   │   │   │   └── template.hbs
│   │   │   └── property-owner
│   │   │   ├── component.ts
│   │   │   ├── mutation.graphql
│   │   │   ├── styles.scss
│   │   │   └── template.hbs
│   │   ├── re-captcha
│   │   │   ├── component.ts
│   │   │   ├── styles.scss
│   │   │   └── template.hbs
│   │   ├── referral-info
│   │   │   ├── component.ts
│   │   │   ├── styles.scss
│   │   │   └── template.hbs
│   │   ├── request-email-verification-link
│   │   │   ├── component.ts
│   │   │   ├── mutation.graphql
│   │   │   └── template.hbs
│   │   ├── request-refund-modal
│   │   │   ├── component.ts
│   │   │   └── template.hbs
│   │   ├── step-progress-indicator
│   │   │   ├── styles.scss
│   │   │   └── template.hbs
│   │   ├── survey-form
│   │   │   ├── component.ts
│   │   │   ├── mutation.graphql
│   │   │   ├── options.ts
│   │   │   ├── styles.scss
│   │   │   ├── template.hbs
│   │   │   └── validations.ts
│   │   ├── theme-settings
│   │   │   ├── component.ts
│   │   │   └── template.hbs
│   │   ├── user-avatar
│   │   │   ├── component.ts
│   │   │   ├── styles.scss
│   │   │   └── template.hbs
│   │   ├── user-avatar-upload
│   │   │   ├── add-avatar.graphql
│   │   │   ├── component.ts
│   │   │   ├── remote-avatar.graphql
│   │   │   ├── styles.scss
│   │   │   └── template.hbs
│   │   ├── user-confirmation-ribbon
│   │   │   └── template.hbs
│   │   ├── user-create-form
│   │   │   ├── component.ts
│   │   │   ├── mutation.graphql
│   │   │   ├── styles.scss
│   │   │   ├── template.hbs
│   │   │   ├── validate-referral-code.graphql
│   │   │   └── validations.ts
│   │   └── user-dropdown
│   │   ├── component.ts
│   │   ├── styles.scss
│   │   └── template.hbs
│   ├── 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