-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #56 from lsviben/init-hooks
add init hooks
- Loading branch information
Showing
3 changed files
with
33 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
To get started: | ||
|
||
1. Replace `function-template-go` with your function in `go.mod`, | ||
`package/crossplane.yaml`, and any Go imports. (You can also do this | ||
automatically by running the `./init.sh <function-name>` script.) | ||
2. Update `input/v1beta1/` to reflect your desired input (and run `go generate`) | ||
3. Add your logic to `RunFunction` in `fn.go` | ||
4. Add tests for your logic in `fn_test.go` | ||
5. Update `README.md`, to be about your function! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/bin/sh | ||
|
||
# This script helps initialize a new function project by | ||
# replacing all instances of function-template-go with the | ||
# name of your function. The scripts accepts two arguments: | ||
# 1. The name of your function | ||
# 2. The path to your function directory | ||
|
||
set -e | ||
|
||
cd "$2" || return | ||
|
||
# Replace function-template-go with the name of your function | ||
# in go.mod | ||
perl -pi -e s,function-template-go,"$1",g go.mod | ||
# in fn.go | ||
perl -pi -e s,function-template-go,"$1",g fn.go | ||
# in examples | ||
perl -pi -e s,function-template-go,"$1",g example/* | ||
|
||
echo "Function $1 has been initialised successfully" |