chore: move scripts to scripts/

This commit is contained in:
Chi-En Wu
2020-04-28 15:33:14 +08:00
parent fa06118b67
commit 6bd99ed526
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -24,6 +24,6 @@
# Others
starter/
.github/
scripts/
gcloud_auth_key.json
create.sh
README.md
+5 -5
View File
@@ -66,20 +66,20 @@ $ helm dep build
### Using Starter
The best way to get started is to use the [`create` script](create.sh) to generate a new chart.
The best way to get started is to use the [`create-chart` script](scripts/create-chart.sh) to generate a new chart.
You can fetch that script, and then execute it locally:
```shell
$ curl -fsSL -o create.sh https://raw.githubusercontent.com/hahow/common-chart/master/create.sh
$ chmod 700 create.sh
$ ./create.sh mychart
$ curl -fsSL -o create.sh https://raw.githubusercontent.com/hahow/common-chart/master/scripts/create-chart.sh
$ chmod 700 create-chart.sh
$ ./create-chart.sh mychart
```
or simply
```shell
$ curl https://raw.githubusercontent.com/hahow/common-chart/master/create.sh | bash -s -- mychart
$ curl https://raw.githubusercontent.com/hahow/common-chart/master/scripts/create-chart.sh | bash -s -- mychart
```
Now, there is a chart in `./mychart`. You can edit it and create your own templates.