Skip to content

Commit

Permalink
Merge pull request #10 from sev-2/controller
Browse files Browse the repository at this point in the history
Basic API Endpoint Creation
  • Loading branch information
toopay authored Mar 29, 2024
2 parents 96d258f + 9443732 commit f2b701d
Show file tree
Hide file tree
Showing 535 changed files with 17,308 additions and 31,758 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
build/
examples/
deployments/

!pkg/cli/build
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ check-build:
@mkdir -p $(BUILD_DIR)

build-linux:
GOOS=linux GOARCH=amd64 go build -o $(BUILD_DIR)/$(CLI_BINARY_NAME)_linux_$(CLI_VERSION) ./cmd/cli/raiden.go
GOOS=linux GOARCH=amd64 go build -o $(BUILD_DIR)/$(CLI_BINARY_NAME)_linux_$(CLI_VERSION) ./cmd/raiden/main.go

build-linux-arm64:
GOOS=linux GOARCH=arm64 go build -o $(BUILD_DIR)/$(CLI_BINARY_NAME)_linux_arm64_$(CLI_VERSION) ./cmd/cli/raiden.go

build-windows:
GOOS=windows GOARCH=amd64 go build -o $(BUILD_DIR)/$(CLI_BINARY_NAME)_windows_$(CLI_VERSION).exe ./cmd/cli/raiden.go
GOOS=windows GOARCH=amd64 go build -o $(BUILD_DIR)/$(CLI_BINARY_NAME)_windows_$(CLI_VERSION).exe ./cmd/raiden/main.go

build-macos:
GOOS=darwin GOARCH=amd64 go build -o $(BUILD_DIR)/$(CLI_BINARY_NAME)_macos_$(CLI_VERSION) ./cmd/cli/raiden.go
GOOS=darwin GOARCH=amd64 go build -o $(BUILD_DIR)/$(CLI_BINARY_NAME)_macos_$(CLI_VERSION) ./cmd/raiden/main.go

build-macos-arm64:
GOOS=darwin GOARCH=arm64 go build -o $(BUILD_DIR)/$(CLI_BINARY_NAME)_macos_arm64_$(CLI_VERSION) ./cmd/cli/raiden.go
Expand Down
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,22 @@ Usage:
raiden [command]
Available Commands:
apply Apply resource to supabase
build Build app binary
completion Generate the autocompletion script for the specified shell
configure Configure project
generate Generate application resource
help Help about any command
run Deploy and run application
imports Import supabase resource
init Init golang app
run Run app server
serve Serve app binary
start Start new app
version Show application information
Flags:
-h, --help help for raiden
-h, --help help for raiden
-v, --verbose enable verbose output
Use "raiden [command] --help" for more information about a command.
```
Expand Down
20 changes: 0 additions & 20 deletions cmd/cli/generate/generate.go

This file was deleted.

21 changes: 0 additions & 21 deletions cmd/cli/raiden.go

This file was deleted.

20 changes: 0 additions & 20 deletions cmd/cli/run/run.go

This file was deleted.

250 changes: 0 additions & 250 deletions cmd/cli/start/input.go

This file was deleted.

Loading

0 comments on commit f2b701d

Please sign in to comment.