How to deploy cloud code on a ParS server hosted on AWS

2 answers

Try the following command:

eb deploy

It will archive your repository, upload to S3 and deploy it to eb.

Get the CLI tool: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/eb-cli3-install.html

0

Parse Server . EB CLI , eb deploy.

, ParseServer index.js, , CloudCode :

var api = new ParseServer({
  ...
  cloud: process.env.CLOUD_CODE_MAIN || __dirname + '/cloud/main.js',
  ...

.

, "" , main.js. , AWS. , , .

0

All Articles