Skip to content

Commit d18ff0c

Browse files
committed
fix: Updated urls to point to new documentation domain codifycli.com/docs instead
1 parent 6063897 commit d18ff0c

17 files changed

Lines changed: 20 additions & 20 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Codify is a command-line tool that brings the power of Infrastructure as Code (I
77
<p align="center">
88
<a href="https://codifycli.com">Website</a> •
99
<a href="https://dashboard.codifycli.com">Web Editor</a> •
10-
<a href="https://docs.codifycli.com">Documentation</a>
10+
<a href="https://codifycli.com/docs">Documentation</a>
1111
</p>
1212

1313
<p align="center">
@@ -115,7 +115,7 @@ Out-of-the-box support for:
115115
- **npm** global packages
116116
- **macOS** system preferences
117117
- **Git** configuration
118-
- And [many more](https://docs.codifycli.com/plugins)...
118+
- And [many more](https://codifycli.com/docs/plugins)...
119119
120120
Don't see what you need? [Create your own plugin](https://codifycli.com/docs/plugins).
121121
@@ -278,7 +278,7 @@ A: Those tools are designed for server configuration management. Codify is purpo
278278
279279
## Community & Support
280280
281-
- **Documentation**: [docs.codifycli.com](https://docs.codifycli.com)
281+
- **Documentation**: [codifycli.com/docs](https://codifycli.com/docs)
282282
- **Issues**: [GitHub Issues](https://github.com/codifycli/codify/issues)
283283
- **Default Plugin**: [GitHub Default Plugin](https://github.com/codifycli/default-plugin)
284284
- **Website**: [codifycli.com](https://codifycli.com)
@@ -301,5 +301,5 @@ This project is licensed under the [Apache 2.0 License](LICENSE).
301301
<p align="center">
302302
<a href="https://codifycli.com">codifycli.com</a> •
303303
<a href="https://github.com/codifycli/codify">GitHub</a> •
304-
<a href="https://docs.codifycli.com">Docs</a>
304+
<a href="https://codifycli.com/docs">Docs</a>
305305
</p>

scripts/install-beta.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,6 @@ SCRIPT
8484
CYAN='\033[0;36m'
8585
END_ESCAPE='\033[0m'
8686

87-
printf "${CYAN}\n🎉 %s 🎉\n%s${END_ESCAPE}\n" "Successfully installed Codify. Type codify --help for a list of commands." "Visit the documentation at https://docs.codifycli.com for more info."
87+
printf "${CYAN}\n🎉 %s 🎉\n%s${END_ESCAPE}\n" "Successfully installed Codify. Type codify --help for a list of commands." "Visit the documentation at https://codifycli.com/docs for more info."
8888
exit 0;
8989
}

scripts/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,6 @@ SCRIPT
8484
CYAN='\033[0;36m'
8585
END_ESCAPE='\033[0m'
8686

87-
printf "${CYAN}\n🎉 %s 🎉\n%s${END_ESCAPE}\n" "Successfully installed Codify. Type codify --help for a list of commands." "Visit the documentation at https://docs.codifycli.com for more info."
87+
printf "${CYAN}\n🎉 %s 🎉\n%s${END_ESCAPE}\n" "Successfully installed Codify. Type codify --help for a list of commands." "Visit the documentation at https://codifycli.com/docs for more info."
8888
exit 0;
8989
}

src/commands/apply.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ any changes.
1616
For scripts: use ${chalk.bold.bgMagenta(' --output json ')} which will skip approval and
1717
apply changes directly.
1818
19-
For more information, visit: https://docs.codifycli.com/commands/apply
19+
For more information, visit: https://codifycli.com/docs/commands/apply
2020
`
2121

2222
static flags = {

src/commands/connect.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default class Connect extends BaseCommand {
66
`Open a connection to the Codify dashboard. This command will host a local server to receive commands (e.g. apply, destroy, etc.)
77
from the Codify dashboard.
88
9-
For more information, visit: https://docs.codifycli.com/commands/connect
9+
For more information, visit: https://codifycli.com/docs/commands/connect
1010
`
1111

1212
static flags = {}

src/commands/destroy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ with a matching type.
1818
• If a codify.jsonc file doesn't exist, additional information may be asked to identify
1919
the specific resource to destroy.
2020
21-
For more information, visit: https://docs.codifycli.com/commands/destory`
21+
For more information, visit: https://codifycli.com/docs/commands/destory`
2222

2323
static examples = [
2424
'<%= config.bin %> <%= command.id %> homebrew nvm',

src/commands/edit.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default class Edit extends BaseCommand {
55
static description =
66
`Short cut for opening your default Codify file in the Codify dashboard.
77
8-
For more information, visit: https://docs.codifycli.com/commands/edit
8+
For more information, visit: https://codifycli.com/docs/commands/edit
99
`
1010

1111
static flags = {}

src/commands/import.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The results can be saved in one of three ways:
3030
3131
Codify will attempt to smartly insert new configurations while preserving existing spacing and formatting.
3232
33-
For more information, visit: https://docs.codifycli.com/commands/import`
33+
For more information, visit: https://codifycli.com/docs/commands/import`
3434

3535
static override examples = [
3636
'<%= config.bin %> <%= command.id %> homebrew nvm asdf',

src/commands/init.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Use this command to automatically generate Codify configs based on
1414
the currently installed system resources. By default, the new file
1515
will be written to ${chalk.bold.bgMagenta(' ~/codify.jsonc ')}.
1616
17-
For more information, visit: https://docs.codifycli.com/commands/init`
17+
For more information, visit: https://codifycli.com/docs/commands/init`
1818

1919
static baseFlags= {
2020
...BaseCommand.baseFlags,

src/commands/login.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export default class Login extends BaseCommand {
1111
1212
By default opens a browser window to login. If username and password are provided, it will attempt to login via CLI.
1313
14-
For more information, visit: https://docs.codifycli.com/commands/login
14+
For more information, visit: https://codifycli.com/docs/commands/login
1515
`
1616

1717
static baseFlags = {

0 commit comments

Comments
 (0)