├── .deployment ├── .gitignore ├── README.md ├── SECURITY.md ├── cloud └── main.js ├── config.js ├── deploy.cmd ├── index.js ├── local.js ├── package.json └── web.config /.deployment: -------------------------------------------------------------------------------- 1 | [config] 2 | command = deploy.cmd -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/parse-server-example/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/parse-server-example/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/parse-server-example/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cloud/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/parse-server-example/HEAD/cloud/main.js -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/parse-server-example/HEAD/config.js -------------------------------------------------------------------------------- /deploy.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/parse-server-example/HEAD/deploy.cmd -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/parse-server-example/HEAD/index.js -------------------------------------------------------------------------------- /local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/parse-server-example/HEAD/local.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/parse-server-example/HEAD/package.json -------------------------------------------------------------------------------- /web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/parse-server-example/HEAD/web.config --------------------------------------------------------------------------------