Skip to content

Latest commit

 

History

History
52 lines (33 loc) · 1.12 KB

README-en.md

File metadata and controls

52 lines (33 loc) · 1.12 KB

Structure



Startup procedure

  1. Create a 'democrud' database in postgres.

  2. In Visual Studio Code, open the project.

  3. Start Command Prompt and move to the following directory of the project.

    cd C:\['your location']\CRUD-Go-Postgres-Vuetify3
    
    
  4. Start the backend

    go run backend.go
    
  5. Start the command prompt and move to the following directory of the project.

    cd ./frontend
    
  6. Launch the frontend

    npm run serve
    
  7. Access with a Chronium-like browser such as Edge/Safari.
    (When npm run serve completes the build, the following URL is displayed.)
    App running at: http://localhost:8080/

Library Used

  1. Gorm ( gorm.io/gorm)
  2. Gorilla Mux (github.com/gorilla/mux)
  3. Postgres (gorm.io/driver/postgres)