```shell go build -o ./build/cmd/server/main.exe ./src/cmd/server/main.go ./build/cmd/server/main.exe ``` ```shell go run src/cmd/server/main.go ``` # migrations-up ```shell goose -dir ./migrations/ sqlite3 ${DB_URL} up ``` # migrations-reset ```shell goose -dir ./migrations/ sqlite3 ${DB_URL} reset ``` ```shell libreoffice --headless --convert-to xlsx file.xls ``` ## Зависимости ```bash go get -u github.com/mattn/go-sqlite3@latest go get -u github.com/joho/godotenv/autoload@latest go get -u github.com/labstack/echo/v4@latest go get -u github.com/labstack/echo/v4/middleware@latest go get -u github.com/google/uuid@latest go get -u github.com/xuri/excelize/v2@latest go install github.com/pressly/goose/v3/cmd/goose@latest ```