- Navigate to the backend directory:
cd ./backend
- Run the backend server:
go run cmd/server/main.go
- Navigate to the frontend directory:
cd ./frontend
- Install dependencies:
npm install
- Start the development server:
npm run dev
Follow these steps to configure Amazon Cognito for authentication:
-
Navigate to Cognito
- Go to the AWS Management Console and open Cognito.
-
Create a User Pool
- Configure authentication settings as per your requirements.
-
Retrieve Credentials
- Once the User Pool is set up, obtain the necessary credentials:
- User Pool ID
- App Client ID
- Once the User Pool is set up, obtain the necessary credentials:
-
Update Application Configuration
- Add the retrieved credentials to your application's configuration file (e.g.,
config.yml
).
- Add the retrieved credentials to your application's configuration file (e.g.,
For more details, refer to the official AWS documentation.
This guide follows the approach used in the project implementation. If you encounter any issues, check the AWS documentation or relevant project files.