Skip to content

codexman0/meteor-local-market

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Local Market

Local Market is an open source app powered by Meteor and made by Percolate Studio. 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 Twitter

By 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:

  2. Sign in and create your app on [https://dev.twitter.com/apps/new](Twitter's App Dashboard)

  3. Set Callback URL to anything, but don't keep it blank. (Meteor apps use OAuth 1.0a, which doesn't require setting this field)

  4. In the "Settings" tab, enable "Allow this application to be used to Sign in with Twitter"

  5. In the "Permissions" tab, give the app "Read and Write" access.

  6. Configure your Twitter credentials in your Meteor app:

  7. Go to the "Keys and Access Tokens" tab.

  8. Create a settings.json file that won't be in source control with the following contents:

{
  "twitter": {
    "consumerKey": "<Copy value from Consumer Key (API Key)>",
    "secret": "<Consumer Secret (API Secret)>"
  }
}
  1. Now you can run or deploy your copy of Local Market with the --settings path/to/settings.json option.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published