Skip to content

Commit

Permalink
Update directory structure
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinsuh committed Sep 21, 2016
1 parent 632333b commit 43f552f
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,19 +73,19 @@ Since Toki uses a compiler for both ES6 ([Babel](https://babeljs.io/)) and SCSS
**This is the overall structure of Toki**:
```
build/
├── app/ // Express web server
│ ├── api/ // RESTful API endpoints
│ ├── migrations/ // Sequelize DB migrations
│ ├── models/ // Sequelize Models
│ ├── router/ // Express routes
│ ├── cron.js/ // Cron job functions
├── bot/ // Slackbot
│ ├── actions/ // Proactive actions
│ ├── controllers/ // Botkit controllers to handle Slack events and conversations
│ ├── lib/ // Slackbot helpers
│ ├── middleware/ // Botkit middleware functions
├── public/ // Static assets
├── server.js/ // Our starting point
├── app/
│ ├── api/ // RESTful API endpoints
│ ├── migrations/ // Sequelize DB migrations
│ ├── models/ // Sequelize Models
│ ├── router/ // Express routes
│ ├── cron.js/ // Cron job functions
├── bot/
│ ├── actions/ // Proactive actions
│ ├── controllers/ // Botkit controllers to handle Slack events and conversations
│ ├── lib/ // Slackbot helpers
│ ├── middleware/ // Botkit middleware functions
├── public/ // Static assets
├── server.js/ // App starting point
```

**Notes:**
Expand Down

0 comments on commit 43f552f

Please sign in to comment.