https://github.com/chiragpadyal/aws-amplify-comment
Comment System using AWS Amplify Read blog here :
https://github.com/chiragpadyal/aws-amplify-comment
amplify appsync-graphql-api aws
Last synced: about 2 months ago
JSON representation
Comment System using AWS Amplify Read blog here :
- Host: GitHub
- URL: https://github.com/chiragpadyal/aws-amplify-comment
- Owner: chiragpadyal
- License: mit
- Created: 2023-07-31T22:00:02.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-18T16:07:56.000Z (about 2 years ago)
- Last Synced: 2025-04-07T13:20:09.674Z (about 1 year ago)
- Topics: amplify, appsync-graphql-api, aws
- Language: TypeScript
- Homepage: https://chiragpadyal.hashnode.dev/rapidcomments-a-reddit-like-commenting-system-with-amplify
- Size: 458 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Amplify Comment Section
## How to Run
**Step 1:** Install `pnpm` globally for efficient dependency management.
```sh
npm install pnpm -g
```
**Step 2:** Install project dependencies.
```sh
cd aws-amplify-comment
pnpm install
```
**Step 3:** Install Amplify CLI globally.
```sh
npm i @aws-amplify/cli -g
```
**Step 4:** Initialize Amplify project.
```sh
amplify init
```
**Step 5:** Start local API mock.
```sh
amplify mock api
```
**Step 6:** Start the application.
```sh
pnpm run start
```
## To Deploy
**Step 1:** Build the project.
```sh
pnpm run build
```
**Step 2:** Push changes to the cloud.
```sh
amplify push
```
**Step 3:** Publish the application.
```sh
amplify publish
```