Skip to content

Commit 4f20173

Browse files
Merge pull request #1 from chris-sun-star/terraform-provider
implement oceanbase provider
2 parents 5aacbb6 + 6cefcfe commit 4f20173

File tree

252 files changed

+89311
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

252 files changed

+89311
-0
lines changed

Makefile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.PHONY: build
2+
build:
3+
go build -o bin/terraform-provider-oceanbase ./main.go
4+
5+
.PHONY: tidy
6+
tidy:
7+
go mod tidy
8+
9+
.PHONY: clean
10+
clean:
11+
rm -rf bin/*

0 commit comments

Comments
 (0)