Skip to content

Commit 3b623ba

Browse files
author
Vic Shóstak
authored
Merge pull request #53 from create-go-app/dev
Update CLI defaults registry to v1.6.12
2 parents 7aab3ef + 244fe29 commit 3b623ba

File tree

2 files changed

+19
-16
lines changed

2 files changed

+19
-16
lines changed

README.md

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<h1 align="center">
2-
<img src="https://github.com/create-go-app/cli/blob/master/.github/images/cgapp_logo@2x.png" width="224px"/><br/>
2+
<img src="https://raw.githubusercontent.com/create-go-app/cli/master/.github/images/cgapp_logo%402x.png" width="224px"/><br/>
33
Create Go App CLI
44
</h1>
55
<p align="center">Create a new production-ready project with <b>backend</b> (Golang), <b>frontend</b> (JavaScript, TypeScript)<br/>and <b>deploy automation</b> (Ansible, Docker) by running one CLI command.<br/><br/>Focus on <b>writing</b> code and <b>thinking</b> of business-logic! The CLI will take care of the rest.</p>
66

7-
<p align="center"><a href="https://github.com/create-go-app/cli/releases" target="_blank"><img src="https://img.shields.io/badge/version-v1.6.11-blue?style=for-the-badge&logo=none" alt="cli version" /></a>&nbsp;<a href="https://pkg.go.dev/github.com/create-go-app/cli?tab=doc" target="_blank"><img src="https://img.shields.io/badge/Go-1.11+-00ADD8?style=for-the-badge&logo=go" alt="go version" /></a>&nbsp;<a href="https://gocover.io/github.com/create-go-app/cli/pkg/cgapp" target="_blank"><img src="https://img.shields.io/badge/Go_Cover-94%25-success?style=for-the-badge&logo=none" alt="go cover" /></a>&nbsp;<a href="https://goreportcard.com/report/github.com/create-go-app/cli" target="_blank"><img src="https://img.shields.io/badge/Go_report-A+-success?style=for-the-badge&logo=none" alt="go report" /></a>&nbsp;<img src="https://img.shields.io/badge/license-apache_2.0-red?style=for-the-badge&logo=none" alt="license" /></p>
7+
<p align="center"><a href="https://github.com/create-go-app/cli/releases" target="_blank"><img src="https://img.shields.io/badge/version-v1.6.12-blue?style=for-the-badge&logo=none" alt="cli version" /></a>&nbsp;<a href="https://pkg.go.dev/github.com/create-go-app/cli?tab=doc" target="_blank"><img src="https://img.shields.io/badge/Go-1.11+-00ADD8?style=for-the-badge&logo=go" alt="go version" /></a>&nbsp;<a href="https://gocover.io/github.com/create-go-app/cli/pkg/cgapp" target="_blank"><img src="https://img.shields.io/badge/Go_Cover-94%25-success?style=for-the-badge&logo=none" alt="go cover" /></a>&nbsp;<a href="https://goreportcard.com/report/github.com/create-go-app/cli" target="_blank"><img src="https://img.shields.io/badge/Go_report-A+-success?style=for-the-badge&logo=none" alt="go report" /></a>&nbsp;<img src="https://img.shields.io/badge/license-apache_2.0-red?style=for-the-badge&logo=none" alt="license" /></p>
88

9-
## ⚡️ [Quick start](https://create-go.app/quick-start/)
9+
## ⚡️ Quick start
1010

1111
First of all, [download](https://golang.org/dl/) and install **Go**. Version `1.11` or higher is required.
1212

@@ -36,7 +36,7 @@ cgapp deploy
3636

3737
That's all you need to start! 🎉
3838

39-
### ~ [Docker-way to quick start](https://create-go.app/detailed-guides/official-docker-image/)
39+
### ~ Docker-way to quick start
4040

4141
If you don't want to install Create Go App CLI to your system, you feel free to using our official [Docker image](https://hub.docker.com/r/koddr/cgapp) and run CLI from isolated container:
4242

@@ -46,7 +46,7 @@ docker run --rm -it -v ${PWD}:${PWD} -w ${PWD} koddr/cgapp:latest
4646

4747
With this Docker image, you do **not** have to worry about installing tools/CLI of frontend UI libraries/frameworks. Everything is **already included**: `create-react-app`, `preact-cli`, `vue-cli`, `ng-cli` and `degit` (for Svelte and Sapper).
4848

49-
Available commands for official Docker image:
49+
Available commands for [official Docker image](https://create-go.app/detailed-guides/official-docker-image/):
5050

5151
- [x] [`init`](https://create-go.app/detailed-guides/commands-and-options/#init)
5252
- [x] [`create`](https://create-go.app/detailed-guides/commands-and-options/#create)
@@ -62,7 +62,7 @@ A short video screencast to introduce main features of the Create Go App CLI.
6262
🔗 https://youtu.be/5-DNZFU9TOQ
6363
</a>
6464

65-
## 📖 [Official Documentation](https://create-go.app/)
65+
## 📖 Official Documentation
6666

6767
Unfortunately, we are unable to include all helpful documentation to the `README` file. That's why, the best way to better explore all the features of the **Create Go App CLI** is to read the [Official Documentation](https://create-go.app/) and explore [Discussions](https://github.com/create-go-app/cli/discussions).
6868

@@ -85,17 +85,18 @@ Unfortunately, we are unable to include all helpful documentation to the `README
8585
- [How do I ask the right question?](https://create-go.app/ask-question/#how-do-i-ask-the-right-question)
8686
- [Official logo](https://create-go.app/logo/)
8787

88-
## ⚙️ [Commands & Options](https://create-go.app/detailed-guides/commands-and-options/)
88+
## ⚙️ Commands & Options
8989

90-
### [`init`](https://create-go.app/detailed-guides/commands-and-options/#init)
90+
### `init`
9191

9292
CLI command for generate a default `.cgapp.yml` config file in current folder:
9393

9494
```bash
9595
cgapp init
9696
```
9797

98-
📺 Preview: https://recordit.co/yvlnIu8Lyp
98+
- 📺 Preview: https://recordit.co/yvlnIu8Lyp
99+
- 📖 Docs: https://create-go.app/detailed-guides/commands-and-options/#init
99100

100101
<details>
101102
<summary>Generated config file</summary>
@@ -174,7 +175,7 @@ roles:
174175
175176
</details>
176177
177-
### [`create`](https://create-go.app/detailed-guides/commands-and-options/#create)
178+
### `create`
178179

179180
CLI command to create a new project with the selected configuration.
180181

@@ -191,7 +192,8 @@ Run `create` command **without** any arguments:
191192
cgapp create
192193
```
193194

194-
📺 Preview: https://recordit.co/LTxFQloedn
195+
- 📺 Preview: https://recordit.co/LTxFQloedn
196+
- 📖 Docs: https://create-go.app/detailed-guides/commands-and-options/#create
195197

196198
#### Create from the config file
197199

@@ -201,7 +203,7 @@ Run `create` command **with** `--use-config` (or `-c`) argument:
201203
cgapp create --use-config
202204
```
203205

204-
### [`deploy`](https://create-go.app/detailed-guides/commands-and-options/#deploy)
206+
### `deploy`
205207

206208
CLI command for deploy Docker containers with your project to a remote server.
207209

@@ -220,7 +222,8 @@ Run `deploy` command **without** any arguments:
220222
cgapp deploy
221223
```
222224

223-
📺 Preview: https://recordit.co/ewjG9dgMPX
225+
- 📺 Preview: https://recordit.co/ewjG9dgMPX
226+
- 📖 Docs: https://create-go.app/detailed-guides/commands-and-options/#deploy
224227

225228
#### Deploy from the config file
226229

@@ -236,7 +239,7 @@ When we started this project, we asked ourselves this question too and... came t
236239

237240
So, yes, this CLI gives you the ability to prepare everything you need to **start a new project** (as `create-react-app` for the React.js ecosystem does) and **deploy an existing project** to a remote server in configured and fully isolated Docker containers.
238241

239-
## 📝 [Production-ready project templates](https://create-go.app/production-templates/)
242+
## 📝 Production-ready project templates
240243

241244
**Backend:**
242245

@@ -263,7 +266,7 @@ So, yes, this CLI gives you the ability to prepare everything you need to **star
263266
>
264267
> Now, the frontend part of your project will be generated **using official CLI** from the authors of each frontend UI library/framework (_under the hood_). So, you'll always get the latest version of `React`, `Preact`, `Vue.js`, `Angular`, `Svelte` or `Sapper` for your project from their authors!
265268

266-
## 🐳 [Configured Docker containers](https://create-go.app/docker-containers/)
269+
## 🐳 Configured Docker containers
267270

268271
**Web/Proxy server:**
269272

pkg/registry/defaults.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import "github.com/AlecAivazis/survey/v2"
3030

3131
const (
3232
// CLIVersion version of Create Go App CLI.
33-
CLIVersion = "1.6.11"
33+
CLIVersion = "1.6.12"
3434
// RegexpAnsiblePattern pattern for Ansible roles.
3535
RegexpAnsiblePattern = "^(deploy)$"
3636
// RegexpBackendPattern pattern for backend.

0 commit comments

Comments
 (0)