diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..c87b85e --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,11 @@ +{ + "files.exclude": { + "amplify/.config": true, + "amplify/**/*-parameters.json": true, + "amplify/**/amplify.state": true, + "amplify/**/transform.conf.json": true, + "amplify/#current-cloud-backend": true, + "amplify/backend/amplify-meta.json": true, + "amplify/backend/awscloudformation": true + } +} \ No newline at end of file diff --git a/amplify.yml b/amplify.yml new file mode 100644 index 0000000..c69e99b --- /dev/null +++ b/amplify.yml @@ -0,0 +1,22 @@ +version: 1 +backend: + phases: + build: + commands: + - '# Execute Amplify CLI with the helper script' + - amplifyPush --simple +frontend: + phases: + preBuild: + commands: + - npm ci + build: + commands: + - npm run build + artifacts: + baseDirectory: build + files: + - '**/*' + cache: + paths: + - node_modules/**/*