Skip to content

Latest commit

 

History

History
52 lines (38 loc) · 1.22 KB

README.md

File metadata and controls

52 lines (38 loc) · 1.22 KB

Project Setup Guide

Backend Setup

  1. Navigate to the backend directory:
    cd ./backend
  2. Run the backend server:
    go run cmd/server/main.go

Frontend Setup

  1. Navigate to the frontend directory:
    cd ./frontend
  2. Install dependencies:
    npm install
  3. Start the development server:
    npm run dev

Setting Up Amazon Cognito

Follow these steps to configure Amazon Cognito for authentication:

  1. Navigate to Cognito

  2. Create a User Pool

    • Configure authentication settings as per your requirements.
  3. Retrieve Credentials

    • Once the User Pool is set up, obtain the necessary credentials:
      • User Pool ID
      • App Client ID
  4. Update Application Configuration

    • Add the retrieved credentials to your application's configuration file (e.g., config.yml).

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.