Skip to content

Commit

Permalink
setup AWS Amplify
Browse files Browse the repository at this point in the history
  • Loading branch information
ykbryan committed May 13, 2020
1 parent 3532e7d commit a038028
Show file tree
Hide file tree
Showing 11 changed files with 2,081 additions and 16 deletions.
16 changes: 16 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,19 @@ yarn-error.log*
*.njsproj
*.sln
*.sw?

#amplify
amplify/\#current-cloud-backend
amplify/.config/local-*
amplify/mock-data
amplify/backend/amplify-meta.json
amplify/backend/awscloudformation
build/
dist/
node_modules/
aws-exports.js
awsconfiguration.json
amplifyconfiguration.json
amplify-build-config.json
amplify-gradle-config.json
amplifyxc.config
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,31 @@
# aws-amplify-vuejs

## Project setup

```
yarn install
```

### Compiles and hot-reloads for development

```
yarn serve
```

### Compiles and minifies for production

```
yarn build
```

### Lints and fixes files

```
yarn lint
```

### Customize configuration

See [Configuration Reference](https://cli.vuejs.org/config/).

amplify init
17 changes: 17 additions & 0 deletions amplify/.config/project-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"projectName": "awsamplifyvuejs",
"version": "3.0",
"frontend": "javascript",
"javascript": {
"framework": "vue",
"config": {
"SourceDir": "src",
"DistributionDir": "dist",
"BuildCommand": "npm run-script build",
"StartCommand": "npm run-script serve"
}
},
"providers": [
"awscloudformation"
]
}
Loading

0 comments on commit a038028

Please sign in to comment.