Accessible lunch menus.
npm i
npm test
Get environment variables
heroku config --app sbks-luncher | sed '1d' | sed 's/: */=/' > .env
Or you can get if from maintainers
PORT=3000
NODE_ENV=development
# necessary for server/service communication
CLOUDAMQP_URL=amqp://....
# when you need caching to work
MEMCACHEDCLOUD_PASSWORD=...
MEMCACHEDCLOUD_SERVERS=...
MEMCACHEDCLOUD_USERNAME=...
# when you want to use slack notifier
URL=http://localhost:8080/
SLACK_API_TOKEN=...
ZOMATO_USER_KEY=...
heroku local
# or
npm run server
npm run service
bin
- one-off scripts like slack notifier
client
- frontend
lib
- common code shared between server & service, possibly frontend
server
- web server related code like routes
service
- worker related code like scrappers