mirror of
https://github.com/Luzifer/cloudkeys-go.git
synced 2024-11-09 22:50:05 +00:00
readme fixes
This commit is contained in:
parent
ffad020a92
commit
a9625cfa44
1 changed files with 24 additions and 24 deletions
24
README.md
24
README.md
|
@ -96,31 +96,31 @@ Example: redis+tcp://auth:mypass@redis.example.com:6379/5?prefix=cloudkeys::
|
||||||
1. Remove the vendor folder and get the current libraries
|
1. Remove the vendor folder and get the current libraries
|
||||||
|
|
||||||
```
|
```
|
||||||
# rm -r vendor && go get -v -u ./...
|
$ rm -r vendor && go get -v -u ./...
|
||||||
```
|
```
|
||||||
|
|
||||||
2. Fake os.Args in config.go
|
2. Fake os.Args in config.go
|
||||||
|
|
||||||
```
|
```
|
||||||
$ git diff config.go
|
$ git diff config.go
|
||||||
diff --git a/config.go b/config.go
|
diff --git a/config.go b/config.go
|
||||||
index f2bbf2e..542c276 100644
|
index f2bbf2e..542c276 100644
|
||||||
--- a/config.go
|
--- a/config.go
|
||||||
+++ b/config.go
|
+++ b/config.go
|
||||||
@@ -2,6 +2,7 @@ package main
|
@@ -2,6 +2,7 @@ package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"net/url"
|
"net/url"
|
||||||
+ "os"
|
+ "os"
|
||||||
|
|
||||||
"github.com/Luzifer/rconfig"
|
"github.com/Luzifer/rconfig"
|
||||||
)
|
)
|
||||||
@@ -24,6 +25,8 @@ func (c config) ParsedStorage() (*url.URL, error) {
|
@@ -24,6 +25,8 @@ func (c config) ParsedStorage() (*url.URL, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func loadConfig() *config {
|
func loadConfig() *config {
|
||||||
+ os.Args = []string{os.Args[0]}
|
+ os.Args = []string{os.Args[0]}
|
||||||
+
|
+
|
||||||
cfg := &config{}
|
cfg := &config{}
|
||||||
rconfig.Parse(cfg)
|
rconfig.Parse(cfg)
|
||||||
return cfg
|
return cfg
|
||||||
|
@ -129,5 +129,5 @@ index f2bbf2e..542c276 100644
|
||||||
3. Deploy on App Engine
|
3. Deploy on App Engine
|
||||||
|
|
||||||
```
|
```
|
||||||
# appcfg.py update .
|
$ appcfg.py update .
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue