Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 887 Bytes

README.md

File metadata and controls

37 lines (26 loc) · 887 Bytes

PersonalProfile

PersonalProfile is a web application built with Golang and the Gin web framework. It allows users to create and manage their personal profiles online.

Prerequisites

Ensure you have the following installed on your system:

  • Go (version 1.22.1 or later)
  • Git

Running the Application

To run the PersonalProfile application, follow these steps:

  1. Clone the repository (if you haven't already):

    git clone https://github.com/yourusername/PersonalProfile.git
    cd PersonalProfile
    
  2. Ensure all dependencies are up to date:

    go mod tidy
    
  3. Run the application:

    go run main.go
    
  4. You should see output indicating that the server has started, typically:

    [GIN-debug] Listening and serving HTTP on :8080
    
  5. Open your web browser and navigate to http://localhost:8080 to view the application.