Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/meteor/localmarket
Localmarket example application
https://github.com/meteor/localmarket
Last synced: 3 months ago
JSON representation
Localmarket example application
- Host: GitHub
- URL: https://github.com/meteor/localmarket
- Owner: meteor
- License: mit
- Created: 2016-03-03T07:07:25.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-11-16T03:50:40.000Z (about 6 years ago)
- Last Synced: 2024-09-29T10:04:21.719Z (3 months ago)
- Language: JavaScript
- Homepage:
- Size: 5.17 MB
- Stars: 45
- Watchers: 15
- Forks: 39
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-starter - Meteor: Local Market
README
Local Market
============Local Market is an open source app powered by Meteor and made by [Percolate Studio](http://percolatestudio.com). In this example app we explore intermediate techniques:
- Using a sample database to generate lists and items
- Integrating OAUTH with Meteor's accounts-ui package
- Cordova integration to use device phone and GPS
- Mobile UI & UX
## Configuring TwitterBy default, Local Market comes configured with credentials for a shared Twitter app. You can also use credentials for your own Twitter application. Here's how:
1. Register your application on Twitter:
1. Sign in and create your app on [Twitter's App Dashboard](https://apps.twitter.com/apps/new)
2. Set Callback URL to anything, but don't keep it blank. (Meteor apps use OAuth 1.0a, which doesn't require setting this field)
3. In the "Settings" tab, enable "Allow this application to be used to Sign in with Twitter"
4. In the "Permissions" tab, give the app "Read and Write" access.2. Configure your Twitter credentials in your Meteor app:
1. Go to the "Keys and Access Tokens" tab.
2. Create a `settings.json` file that **won't be in source control** with the following contents:```js
{
"twitter": {
"consumerKey": "",
"secret": ""
}
}
```3. Now you can run or deploy your copy of Local Market with the `--settings path/to/settings.json` option.