With Personal CRM you can cover your work and family life as well as your hobbies. Get control over your life and get things done.
In sandbox environments you can create seed data with node scripts/start-import.js --environment [ENVIRONMENT-NAME] --email [email protected].
To run the script, you need to provide environment-specific configuration details. This information should be stored in a env.json file located in the scripts directory.
-
Create a file named
env.jsonin thescriptsdirectory. -
Add the following content to the
env.jsonfile, replacing the placeholders with your actual values:{ "staging": { "tables": "your-environment-id", "userPoolId": "your-user-pool-id", "profile": "the-aws-profile-from-your-config", "region": "your-aws-region" }, "prod": { "tables": "your-environment-id", "userPoolId": "your-user-pool-id", "profile": "the-aws-profile-from-your-config", "region": "your-aws-region" }, "dev": { "tables": "your-environment-id", "userPoolId": "your-user-pool-id", "profile": "the-aws-profile-from-your-config", "region": "your-aws-region" } }
When you create an Amplify Sandbox it returns a list of resources that has been created. Watch out for these lines in the output:
amplify-personalcrm-xxxx.awsAppsyncApiId = `your-environment-id`
amplify-personalcrm-xxxx.userPoolId = `your-user-pool-id`