https://github.com/projectbabbler/birder-vs-birder
It's not just for the birds. Track and Compete in exciting birding challenges with your friends.
https://github.com/projectbabbler/birder-vs-birder
Last synced: 11 months ago
JSON representation
It's not just for the birds. Track and Compete in exciting birding challenges with your friends.
- Host: GitHub
- URL: https://github.com/projectbabbler/birder-vs-birder
- Owner: ProjectBabbler
- Created: 2016-02-14T04:32:29.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2022-12-06T20:35:13.000Z (over 3 years ago)
- Last Synced: 2024-05-27T12:23:16.276Z (about 2 years ago)
- Language: JavaScript
- Homepage: http://www.birdervsbirder.com/
- Size: 31.7 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Birder Vs Birder
It's not just for the birds
Track and compete with your friends on who can see the most birds.
## Set up
### Installs
[Install heroku toolbar](https://toolbelt.heroku.com/)
Set up environment variables. Run `heroku config` and add the key values pairs to `.env`
[Install node](https://nodejs.org/en/download/)
Install dependencies
```
npm install
```
### Running App
You'll want to run `gulp watch` to pick up changes to node modules that will be compiled with babel.
```
gulp watch
```
After that you can run the dev server
```
npm run dev
```
### Running things in the command line or console
Use heroku to run node on the command line. This way all the config variables will be loaded into the context correctly.
```
heroku local:run node ./optional/file/to/run.js
```