私はこれらのチュートリアルに従っています: http://rogerstringer.com/2016/02/04/parse-server-heroku/ https://devcenter.heroku.com/articles/deploying-a-parse-server-to-heroku
ParseServer を Heroku にデプロイし、アプリを接続しようとしています。展開の部分は順調に進んでいます。「私は Web サイトになることを夢見ています。」
clientId と appId をどこに置くべきかわかりません。これらは、Heroku 部分からの私の構成変数です。
私がgithubに持っているParseServerのコードは次のとおりです。
var api = new ParseServer({
databaseURI: databaseUri || 'mongodb://localhost:27017/dev',
cloud: process.env.CLOUD_CODE_MAIN || __dirname + '/cloud/main.js',
appId: process.env.APP_ID || 'reciparia',
masterKey: process.env.MASTER_KEY || '' //Add your master key here. Keep it secret!
});
AppDelegate のコード:
let parseConfiguration = ParseClientConfiguration(block: { (ParseMutableClientConfiguration) -> Void in
ParseMutableClientConfiguration.applicationId = "reciparia"
ParseMutableClientConfiguration.clientKey = "CLIENT_KEY"
ParseMutableClientConfiguration.server = "https://amazing-parse.herokuapp.com/parse"
})
clientKey は必須なので、ParseServer にParseClientConfiguration
置く必要があります。
どこに置けばいいですか?Heroku UI の Config Vars、または ParseServer の index.js では?