├── .idea
├── .name
├── vcs.xml
├── jsLibraryMappings.xml
├── modules.xml
├── Goose-Windmill.iml
├── libraries
│ └── Goose_Windmill_node_modules.xml
├── misc.xml
└── workspace.xml
├── Procfile
├── favicon.ico
├── public
├── bookmark.png
├── bookmarked.png
├── app
│ ├── bookmarks
│ │ ├── bookmarks.html
│ │ └── bookmarks.js
│ ├── topStories
│ │ ├── topStories.html
│ │ └── topStories.js
│ ├── currentlyFollowing
│ │ ├── currentlyFollowing.js
│ │ └── currentlyFollowing.html
│ ├── topStoriesWithKeyword
│ │ ├── topStoriesWithKeyword.html
│ │ └── topStoriesWithKeyword.js
│ ├── tabs
│ │ ├── tabs.js
│ │ └── tabs.html
│ ├── services
│ │ ├── auth.js
│ │ ├── bookmarks.js
│ │ ├── followers.js
│ │ └── links.js
│ ├── personal
│ │ ├── personal.js
│ │ └── personal.html
│ ├── auth
│ │ ├── auth.js
│ │ └── auth.html
│ ├── partials
│ │ └── story.html
│ └── app.js
├── lib
│ ├── human-time.js
│ ├── angular-route.min.js
│ ├── angular-route.min.js.map
│ └── underscore-min.js
├── index.html
├── dist
│ ├── production.min.js
│ ├── production.min.css
│ ├── production.css
│ └── production.js
└── styles
│ └── style.css
├── readme_assets
└── hfscreenshot.png
├── .gitignore
├── index.js
├── server
├── cache
│ ├── cacheRoutes.js
│ ├── cacheController.js
│ └── cacheModel.js
├── users
│ ├── userRoutes.js
│ ├── userController.js
│ └── userModel.js
├── bookmarks
│ ├── bookmarksRoutes.js
│ ├── bookmarksController.js
│ └── bookmarksModel.js
├── server.js
└── config
│ └── middleware.js
├── FLOOBITS_README.md
├── .jshintrc
├── bower.json
├── README.md
├── specs
└── client
│ └── routingSpecs.js
├── package.json
├── karma.conf.js
├── _PRESS-RELEASE.md
├── Gruntfile.js
├── _CONTRIBUTING.md
└── _STYLE-GUIDE.md
/.idea/.name:
--------------------------------------------------------------------------------
1 | Goose-Windmill
--------------------------------------------------------------------------------
/Procfile:
--------------------------------------------------------------------------------
1 | web: node index.js
--------------------------------------------------------------------------------
/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lepond/Goose-Windmill/HEAD/favicon.ico
--------------------------------------------------------------------------------
/public/bookmark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lepond/Goose-Windmill/HEAD/public/bookmark.png
--------------------------------------------------------------------------------
/public/bookmarked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lepond/Goose-Windmill/HEAD/public/bookmarked.png
--------------------------------------------------------------------------------
/readme_assets/hfscreenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lepond/Goose-Windmill/HEAD/readme_assets/hfscreenshot.png
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules/
2 | bower_components/
3 | *.log
4 |
5 | build/
6 |
7 |
8 | #Floobits
9 | .floo
10 | .flooignore
11 |
12 | .DS_Store
--------------------------------------------------------------------------------
/index.js:
--------------------------------------------------------------------------------
1 | var app = require('./server/server.js');
2 | var port = process.env.PORT || 3000;
3 |
4 | app.listen(port);
5 |
6 | console.log("Server running on port: " + port + "/\nCTRL + C to shutdown");
--------------------------------------------------------------------------------
/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
15 |
16 |
17 | {{story.points}} points |
18 |
19 | {{ story.author}} |
20 | {{story.created_at | fromNow}} |
21 |
22 | {{story.num_comments ? story.num_comments + ' comments' : 'discuss'}}
23 |
24 | Sign up to save your followers
5 |Sign in to save your followers and bookmarks
96 |