File tree Expand file tree Collapse file tree 11 files changed +21
-9
lines changed Expand file tree Collapse file tree 11 files changed +21
-9
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ test: ## run go tests
16
16
17
17
PHONY : PB
18
18
PB : # # build pocketbase
19
- go build app/pb/main .go
19
+ go build app/pb/pbserver .go
20
20
21
21
integration-test : # ## run integration-test
22
22
go clean -testcache && go test -v ./integration-test/...
Original file line number Diff line number Diff line change 1
1
# README
2
2
3
+ ## fluent cli
4
+
5
+ - create template project
6
+ ``` shell
7
+ fluent starter -h
8
+ fluent starter java
9
+ fluent starter python
10
+ fluent starter go
11
+ fluent starter ts-lib
12
+ fluent starter mono
13
+ ```
14
+
3
15
## Pocketbase Server
4
16
5
17
``` shell
File renamed without changes.
Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ package main
2
2
3
3
import (
4
4
"github.com/fluent-qa/qgops/cmd/base"
5
- "github.com/fluent-qa/qgops/cmd/code " // Add this import
5
+ "github.com/fluent-qa/qgops/cmd/starter " // Add this import
6
6
)
7
7
8
8
func init () {
9
- base .CmdRoot .AddCommand (code .StarterCmd )
9
+ base .CmdRoot .AddCommand (starter .StarterCmd )
10
10
}
11
11
func main () {
12
12
_ = base .CmdRoot .Execute ()
Original file line number Diff line number Diff line change 1
- package code
1
+ package starter
2
2
3
3
import (
4
4
_ "log/slog"
Original file line number Diff line number Diff line change 1
- package code
1
+ package starter
2
2
3
3
import (
4
4
"fmt"
File renamed without changes.
Original file line number Diff line number Diff line change @@ -317,7 +317,7 @@ func (p *Pipe) Do(req *http.Request) *Pipe {
317
317
return err
318
318
}
319
319
defer resp .Body .Close ()
320
- // Any HTTP 2xx status code is considered okay
320
+ // Any HTTP 2xx status starter is considered okay
321
321
if resp .StatusCode / 100 != 2 {
322
322
return fmt .Errorf ("unexpected HTTP response status: %s" , resp .Status )
323
323
}
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ function aws_get_instance_metadata_version_in_use {
100
100
# #################################################################################
101
101
# The following functions aim to support backward compatibility with IMDSv1 by
102
102
# maintaining the arity of all previous function calls, but using $default_instance_metadata_version
103
- # to determine which implementation's code path to follow
103
+ # to determine which implementation's starter path to follow
104
104
105
105
# This function has been modified to simultaneously support Instance Metadata service versions 1 and 2
106
106
# This is due to the fact that we will need to operate in a split-brain mode while all our dependent
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
- # Sets some Bash options to encourage well formed code .
2
+ # Sets some Bash options to encourage well formed starter .
3
3
# For example, some of the options here will cause the script to terminate as
4
4
# soon as a command fails. Another option will cause an error if an undefined
5
5
# variable is used.
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ function os_user_is_root_or_sudo {
85
85
[[ " $EUID " == 0 ]]
86
86
}
87
87
88
- # Returns a zero exit code if the given $username exists
88
+ # Returns a zero exit starter if the given $username exists
89
89
function os_user_exists {
90
90
local -r username=" $1 "
91
91
id " $username " > /dev/null 2>&1
You can’t perform that action at this time.
0 commit comments