# amplify-cli
**Repository Path**: mirrors_bokuweb/amplify-cli
## Basic Information
- **Project Name**: amplify-cli
- **Description**: A CLI toolchain for simplifying serverless web and mobile development.
- **Primary Language**: Unknown
- **License**: Apache-2.0
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-08-08
- **Last Updated**: 2026-02-07
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# AWS Amplify CLI
The AWS Amplify CLI is a toolchain which includes a robust feature set for simplifying mobile and web application development. The CLI uses AWS CloudFormation and nested stacks, which allows you to add or modify configurations locally before you push them for execution in your account.
* [Install the CLI](#install-the-cli)
* [Commands Summary](#commands-summary)
* [Tutorials](#tutorials)
* [Contributing](#contributing)
* [Start building your app](https://aws-amplify.github.io/docs)
> If you're using Windows, the CLI currently supports [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl/install-win10).
## Install the CLI
- Requires Node.jsĀ® version 8.11.x or later
Install and configure the Amplify CLI as follows:
```bash
$ npm install -g @aws-amplify/cli
$ amplify configure
```
### Beta
For [multiple environment and team workflow support](https://aws-amplify.github.io/docs/cli/multienv?sdk=js), install and configure the Amplify CLI as follows:
```bash
$ npm install -g @aws-amplify/cli@multienv
$ amplify configure
```
## Commands Summary
The Amplify CLI supports the commands shown in the following table.
| Command | Description |
| --- | --- |
| amplify configure | Configures the AWS access credentials, AWS Region and sets up a new AWS User Profile |
| amplify init | Initializes a new project, sets up deployment resources in the cloud and prepares your project for Amplify.|
| amplify configure project | Updates configuration settings used to setup the project during the init step |
| amplify add `` | Adds cloud features to your app. |
| amplify update `` | Updates existing cloud features in your app. |
| amplify push [--no-gql-override]| Provisions cloud resources with the latest local developments. The 'no-gql-override' flag does not automatically compile your annotated GraphQL schema and will override your local AppSync resolvers and templates. |
| amplify publish | Runs `amplify push`, publishes a static assets to Amazon S3 and Amazon CloudFront (*hosting category is required). |
| amplify status | Displays the state of local resources that haven't been pushed to the cloud (Create/Update/Delete). |
| amplify serve | Runs `amplify push`, and then executes the project's start command to test run the client-side application. |
| amplify delete | (Experimental Feature) Attempts to delete resources tied to the project. |
| amplify help \| amplify `` help | Displays help for the core CLI. |
| amplify codegen add \| generate | Performs generation of strongly typed objects using a GraphQL schema. |
### Category specific commands:
- [auth (Amazon Cognito)](packages/amplify-category-auth/Readme.md)
- [storage (Amazon S3 & Amazon DynamoDB)](packages/amplify-category-storage/Readme.md)
- [function (AWS Lambda)](packages/amplify-category-function/Readme.md)
- [api (AWS AppSync & Amazon API Gateway)](packages/amplify-category-api/Readme.md)
- [analytics (Amazon Pinpoint)](packages/amplify-category-analytics/Readme.md)
- [hosting (Amazon S3 and Amazon CloudFront distribution)](packages/amplify-category-hosting/Readme.md)
- [notifications (Amazon Pinpoint)](packages/amplify-category-notifications/Readme.md)
- [interactions (Amazon Lex)](packages/amplify-category-interactions/Readme.md)
## Tutorials
- [React & React Native tutorial](https://aws-amplify.github.io/docs/js/react)
- [GraphQL transform tutorial](https://aws-amplify.github.io/docs/js/graphql)
- [Native development with Amplify CLI and AWS AppSync](https://aws-amplify.github.io/docs/cli/codegen)
## Contributing
To set up your local dev environment, go to the `amplify-cli` directory and then run the following:
`yarn config set workspaces-experimental true`
`npm run setup-dev`
To test your category, do the following:
`cd `
`amplify init`
`amplify `
Before pushing code or sending a pull request, do the following:
- At the command line, run `npm run lint` at the top-level directory. This invokes lerna to check for lint errors in all of our packages.
- You can use `eslint` to fix some of the lint errors. To use it, go to the package that has errors and run `lint-fix`
- If there are any remaining lint errors, resolve them manually. Linting your code is a best practice that ensures good code quality so it's important that you don't skip this step.