Set up fullstack project
Use the Vue Vite powered create-app
to bootstrap a new Vue 3 app (selecting the defaults will work for this project):
npm init vue@3
Need to install the following packages: create-vue@3Ok to proceed? (y) y
✔ Project name: … vue-amplified✔ Add TypeScript? … No✔ Add JSX Support? … No✔ Add Vue Router for Single Page Application development? … No✔ Add Pinia for state management? … No✔ Add Vitest for Unit Testing? … No✔ Add Cypress for both Unit and End-to-End testing? … No✔ Add ESLint for code quality? … No
This creates a new Vue app in a directory called vue-amplified. You can then run the following commands to switch into the new vue-amplified directory, install the project dependencies, and run the app:
cd vue-amplifiednpm installnpm run dev
Initialize a new backend
Now that you have a running app, it's time to set up Amplify so that you can create the necessary backend services needed to support the app.
Open a new terminal. From the root of the project, run:
amplify init
When you initialize Amplify you'll be prompted for some information about the app:
Your backend needs a project name to use when creating resources. Give your backend project the name todo
? Enter a name for the project (myamplifyproject) todo
You'll then be asked to accept some recommended values:
The following configuration will be applied:
Project information| Name: todo| Environment: dev| Default editor: Visual Studio Code| App type: javascript| Javascript framework: vue| Source Directory Path: src| Distribution Directory Path: dist| Build Command: npm run-script build| Start Command: npm run-script serve
? Initialize the project with the above configuration? Yes
Where possible the CLI will infer the proper configuration based on the type of project Amplify is being initialized in. In this case it knew you are using Vue and provided the proper configuration for type of app, framework, source, distribution, build, and start options.
Next, you will need to select the authentication method you want to use to work on your project locally:
? Select the authentication method you want to use: (Use arrow keys)> AWS profile AWS access keys
Select AWS profile and then choose the profile you configured in the Prerequisites.
When you initialize a new Amplify project, a few things happen:
- It creates a top level directory called
amplify
that stores your backend definition. During the tutorial you'll add cloud capabilities, such as GraphQL API and web hosting. As you add these features, theamplify
folder will grow with infrastructure-as-code templates that define your backend stack. Infrastructure-as-code is a best practice way to create a replicable backend stack. - It creates a file called
amplifyconfiguration.json
in your designated Source Directory Path that holds all the configuration for the services you create with Amplify. This is how the Amplify JavaScript client library is able to get the necessary information to connect to your backend services. - It modifies the
.gitignore
file, adding some generated files to the ignore list
Install Amplify Libraries
The aws-amplify
package is the main library for working with Amplify Libraries in your projects:
npm install aws-amplify
Set up frontend
Next, configure the Amplify libraries client-side so it can interact with backend services.
Open src/main.js and add the following code below the last import:
import { Amplify } from 'aws-amplify';import amplifyconfig from './amplifyconfiguration.json';Amplify.configure(amplifyconfig);
And that's all it takes to configure Amplify. As you add or remove categories and make updates to your backend configuration using the Amplify CLI, the configuration in amplifyconfiguration.json will update automatically.
Now that your app is set up and Amplify is initialized, you can add an API in the next step.