Skip to content

Instantly share code, notes, and snippets.

@ryanflorence
Last active September 7, 2022 07:36
Show Gist options
  • Save ryanflorence/110d4538bf98694538de to your computer and use it in GitHub Desktop.
Save ryanflorence/110d4538bf98694538de to your computer and use it in GitHub Desktop.
.
├── actions
├── stores
├── views
│   ├── Anonymous
│   │   ├── __tests__
│   │   ├── views
│   │   │   ├── Home
│   │   │   │   ├── __tests__
│   │   │   │   └── Handler.js
│   │   │   └── Login
│   │   │   ├── __tests__
│   │   │   └── Handler.js
│   │   └── Handler.js
│   └── SignedIn
│   ├── __tests__
│   ├── lib
│   │   └── components
│   │   ├── __tests__
│   │   └── Avatar.js
│   ├── views
│   │   ├── Courses
│   │   │   ├── __tests__
│   │   │   ├── views
│   │   │   │   ├── Assignments
│   │   │   │   │   ├── __tests__
│   │   │   │   │   └── Handler.js
│   │   │   │   ├── Default
│   │   │   │   │   ├── __tests__
│   │   │   │   │   └── Handler.js
│   │   │   │   ├── Grades
│   │   │   │   │   ├── __tests__
│   │   │   │   │   └── Handler.js
│   │   │   │   └── Users
│   │   │   │   ├── __tests__
│   │   │   │   └── Handler.js
│   │   │   └── Handler.js
│   │   └── Dashboard
│   │   ├── __tests__
│   │   ├── components
│   │   │   ├── __tests__
│   │   │   ├── Stream.js
│   │   │   ├── StreamItem.js
│   │   │   ├── TodoItem.js
│   │   │   └── TodoList.js
│   │   └── Handler.js
│   └── Handler.js
└── main.js
@srph
Copy link

srph commented Apr 13, 2015

├── app
  ├── lib
  ├── components
  ├── handlers
    ├── home/
      ├── components/
        ├── ...
      ├── HomeView.jsx
      ├── styles.less
    ├── about
    ├── login
    ├── logout
  ├── index.js
  ├── routes.js
├── core
  ├── actions
  ├── stores
  ├── utils
  ├── config.js
├── dashboard
├── public
├── style

the app directory is basically similar to the dashboard directory. We're currently implementing this structure (having the app and dashboard in the same repo), and them have separate builds for them 😄

@samuelazran
Copy link

+1 to @kentcdodds

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment