https://github.com/ersinaksar/amplify-project-setup
https://github.com/ersinaksar/amplify-project-setup
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ersinaksar/amplify-project-setup
- Owner: ersinaksar
- Created: 2022-10-16T16:01:27.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-20T08:58:51.000Z (over 2 years ago)
- Last Synced: 2025-02-05T20:03:16.942Z (4 months ago)
- Language: TypeScript
- Size: 324 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```