File tree 1 file changed +19
-3
lines changed
1 file changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -75,10 +75,26 @@ npx --package=@finos/git-proxy@1.1.0 -- git-proxy # No installation required...
75
75
76
76
## Quickstart 🚀
77
77
78
- #### 1. Run Git Proxy on your PC
78
+ #### 1. Run Git Proxy with simple config
79
+
80
+ Create a ` proxy.config.json ` in a workspace with the following:
81
+
82
+ ``` json
83
+ {
84
+ "authorisedList" : [
85
+ {
86
+ "project" : " <YOUR-GITHUB-USERNAME>" ,
87
+ "name" : " git-proxy" ,
88
+ "url" : " https://github.com/<YOUR-GITHUB-USERNAME>/git-proxy.git"
89
+ }
90
+ ],
91
+ }
92
+ ```
93
+
94
+ Then run Git Proxy and load your ` proxy.config.json ` configuration file from your workspace:
79
95
80
96
``` bash
81
- npx --package=@finos/git-proxy@1.1.0 -- git-proxy
97
+ npx --package=@finos/git-proxy@1.1.0 -- git-proxy --config ./proxy.config.json
82
98
```
83
99
84
100
#### 2. Pick a repository
@@ -136,7 +152,7 @@ git config --global credential.helper manager # Windows
136
152
git config --global credential.helper store # Linux
137
153
```
138
154
139
- #### 6. Success & Next Steps
155
+ #### 6. Success
140
156
141
157
Immediately after a push, you should receive the following message in your terminal:
142
158
You can’t perform that action at this time.
0 commit comments