Skip to content

Latest commit

 

History

History
31 lines (29 loc) · 745 Bytes

README.md

File metadata and controls

31 lines (29 loc) · 745 Bytes

Build Steps

  1. Generate the API server and SQL queries
    go generate
    
  2. Build the frontend application
    npm --prefix app install
    npm --prefix app run build
    
  3. Build the project
    go build -o ./tmp/main
    

Running the Application

Assuming you want to run the binary directly from the repository:

  1. Download the DB schema migration tool atlas
    curl -sSf https://atlasgo.sh | sh
    
  2. Copy the .env file and provide values for any empty variables
    cp .env.example tmp/
  3. Start the server
    ./tmp/main
    
  4. Open the frontend or browse the API