An open API service indexing awesome lists of open source software.

https://github.com/ersinaksar/amplify-project-setup


https://github.com/ersinaksar/amplify-project-setup

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# personal-project

## AWS Amplify
### Creating Amplify Project with Next and React:
```
sudo npm install -g yarn
yarn global add @aws-amplify/cli
amplify -v
amplify configure
npx create-next-app next-amplify
cd next-amplify/
```
- create src folder
- move pages and styles files to src folder
```
amplify init
```

## backend commands
```
npm init -y
npm i nodemon
```

## frontend commands
```
npx create-react-app client
```

### configurations
- add package.json scripts`"dev": "nodemon server/index.js",`
- run

```
nodemon dev
```