Skip to main content
Version: v5.0

Making script changes to your local app

In order to save script changes to your project, follow this procedure and set up a hosted data store to store your scripts. Once set up, you can simply update this location every time you make script changes.

  1. Create a folder in a hosted data store, such as an AWS s3 bucket, to store your zipped scripts.
  2. Replace the endPointConfig.projectZipFileOrigin value in your app/public/config.js file with a link to where your hosted zip file, called data.zip, will be, for example "https://my-aws-username.s3.us-west-2.amazonaws.com/ref_app_project_setup/data.zip".
  3. Create a zipped folder of your scripts folder called data.zip.
  4. Upload data.zip to the hosted data store folder that the endPointConfig.projectZipFileOrigin value points to, for example, "https://my-aws-username.s3.us-west-2.amazonaws.com/ref_app_project_setup".
  5. In your project, run npm run watch.
  6. Open http://localhost:8086/reference in an private browsing window to view your changes.