You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Summary
Update jetpack.io in docs
## How was it tested?
Tested with `docusaurus build`
---------
Signed-off-by: John Lago <[email protected]>
Co-authored-by: Lucille Hua <[email protected]>
Copy file name to clipboardexpand all lines: README.md
+12-12
Original file line number
Diff line number
Diff line change
@@ -8,21 +8,21 @@
8
8
9
9
### Instant, easy, and predictable development environments
10
10
11
-
[](https://discord.gg/agbskCJXk2)[](https://github.com/jetpack-io/devbox/releases)[](https://github.com/jetpack-io/devbox/actions/workflows/cli-release.yml?branch=main)[](https://jetpack.io/devbox/docs/contributor-quickstart/)
11
+
[](https://discord.gg/agbskCJXk2)[](https://github.com/jetify-com/devbox/releases)[](https://github.com/jetify-com/devbox/actions/workflows/cli-release.yml?branch=main)[](https://www.jetify.com/devbox/docs/contributor-quickstart/)
12
12
13
13
## What is it?
14
14
15
-
[Devbox](https://www.jetpack.io/devbox/) is a command-line tool that lets you easily create isolated shells for development. You start by defining the list of packages required by your development environment, and devbox uses that definition to create an isolated environment just for your application.
15
+
[Devbox](https://www.jetify.com/devbox/) is a command-line tool that lets you easily create isolated shells for development. You start by defining the list of packages required by your development environment, and devbox uses that definition to create an isolated environment just for your application.
16
16
17
17
In practice, Devbox works similar to a package manager like `yarn` – except the packages it manages are at the operating-system level (the sort of thing you would normally install with `brew` or `apt-get`). With Devbox, you can install over [400,000 package versions](https://www.nixhub.io) from the Nix Package Registry
18
18
19
-
Devbox was originally developed by [jetpack.io](https://www.jetpack.io) and is internally powered by `nix`.
19
+
Devbox was originally developed by [Jetify](https://www.jetify.com) and is internally powered by `nix`.
20
20
21
21
## Demo
22
22
23
23
You can try out Devbox in your browser using the button below:
24
24
25
-
[](https://devbox.sh/new)
25
+
[](https://devbox.sh/new)
26
26
27
27
The example below creates a development environment with `python 2.7` and `go 1.18`, even though those packages are not installed in the underlying machine:
28
28
@@ -33,10 +33,10 @@ The example below creates a development environment with `python 2.7` and `go 1.
33
33
Use the following install script to get the latest version of Devbox:
34
34
35
35
```sh
36
-
curl -fsSL https://get.jetpack.io/devbox | bash
36
+
curl -fsSL https://get.jetify.com/devbox | bash
37
37
```
38
38
39
-
Read more on the [Devbox docs](https://www.jetpack.io/devbox/docs/installing_devbox/).
39
+
Read more on the [Devbox docs](https://www.jetify.com/devbox/docs/installing_devbox/).
40
40
41
41
## Benefits
42
42
@@ -127,19 +127,19 @@ In this quickstart we’ll create a development shell with specific tools instal
127
127
exit
128
128
```
129
129
130
-
Read more on the [Devbox docs Quickstart](https://www.jetpack.io/devbox/docs/quickstart/).
130
+
Read more on the [Devbox docs Quickstart](https://www.jetify.com/devbox/docs/quickstart/).
131
131
132
132
## Additional commands
133
133
134
134
`devbox help` - see all commands
135
135
136
-
See the [CLI Reference](https://www.jetpack.io/devbox/docs/cli_reference/devbox/) for the full list of commands.
136
+
See the [CLI Reference](https://www.jetify.com/devbox/docs/cli_reference/devbox/) for the full list of commands.
137
137
138
138
## Join our Developer Community
139
139
140
-
+ Chat with us by joining the [Jetpack.io Discord Server](https://discord.gg/jetpack-io) – we have a #devbox channel dedicated to this project.
141
-
+ File bug reports and feature requests using [Github Issues](https://github.com/jetpack-io/devbox/issues)
142
-
+ Follow us on [Jetpack's Twitter](https://twitter.com/jetpack_io) for product updates
140
+
+ Chat with us by joining the [Jetify Discord Server](https://discord.gg/jetify) – we have a #devbox channel dedicated to this project.
141
+
+ File bug reports and feature requests using [Github Issues](https://github.com/jetify-com/devbox/issues)
142
+
+ Follow us on [Jetify's Twitter](https://twitter.com/jetify_com) for product updates
143
143
144
144
## Contributing
145
145
@@ -157,4 +157,4 @@ Thanks to [Nix](https://nixos.org/) for providing isolated shells.
157
157
158
158
## License
159
159
160
-
This project is proudly open-source under the [Apache 2.0 License](https://github.com/jetpack-io/devbox/blob/main/LICENSE)
160
+
This project is proudly open-source under the [Apache 2.0 License](https://github.com/jetify-com/devbox/blob/main/LICENSE)
Copy file name to clipboardexpand all lines: docs/app/docs/contributor-quickstart.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ This quickstart shows you how to install Devbox, and use it to start a developme
16
16
Use the following install script to get the latest version of Devbox:
17
17
18
18
```bash
19
-
curl -fsSL https://get.jetpack.io/devbox | bash
19
+
curl -fsSL https://get.jetify.com/devbox | bash
20
20
```
21
21
22
22
Devbox requires the [Nix Package Manager](https://nixos.org/download.html). If Nix is not detected on your machine when running a command, Devbox will automatically install it for you with the default settings for your OS. Don't worry: You can use Devbox without needing to learn the Nix Language.
@@ -72,12 +72,12 @@ Devbox requires the [Nix Package Manager](https://nixos.org/download.html). If N
72
72
* **[Devbox Global](devbox_global.md):** Learn how to use the devbox as a global package manager
73
73
* **[Devbox Scripts](guides/scripts.md):** Automate setup steps and configuration for your shell using Devbox Scripts.
74
74
* **[Configuration Guide](configuration.md):** Learn how to configure your shell and dev environment with `devbox.json`.
75
-
* **[Browse Examples](https://github.com/jetpack-io/devbox-examples):** You can see how to create a development environment for your favorite tools or languages by browsing the Devbox Examples repo.
75
+
* **[Browse Examples](https://github.com/jetify-com/devbox-examples):** You can see how to create a development environment for your favorite tools or languages by browsing the Devbox Examples repo.
76
76
77
77
### Use Devbox with your IDE
78
78
* **[Direnv Integration](ide_configuration/direnv.md):** Devbox can integrate with [direnv](https://direnv.net/) to automatically activate your shell and packages when you navigate to your project.
79
-
* **[Devbox for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=jetpack-io.devbox):** Install our VS Code extension to speed up common Devbox workflows or to use Devbox in a devcontainer.
79
+
* **[Devbox for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=jetify-com.devbox):** Install our VS Code extension to speed up common Devbox workflows or to use Devbox in a devcontainer.
80
80
81
81
### Get Involved
82
-
* **[Join our Discord Community](https://discord.gg/jetpack-io):** Chat with the development team and our growing community of Devbox users.
83
-
* **[Visit us on Github](https://github.com/jetpack-io/devbox):** File issues and provide feedback, or even open a PR to contribute to Devbox or our Docs.
82
+
* **[Join our Discord Community](https://discord.gg/jetify):** Chat with the development team and our growing community of Devbox users.
83
+
* **[Visit us on Github](https://github.com/jetify-com/devbox):** File issues and provide feedback, or even open a PR to contribute to Devbox or our Docs.
Copy file name to clipboardexpand all lines: docs/app/docs/devbox_cloud/beta_faq.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ Devbox.sh is free to use during the Beta period, subject to the restrictions des
27
27
***RAM**: 8 GB
28
28
***SSD**: 8 GB
29
29
30
-
If you are interested in using Devbox playgrounds or CDE in an enterprise setting, please reach out to us at [info@jetpack.io](mailto://info@jetpack.io)
30
+
If you are interested in using Devbox playgrounds or CDE in an enterprise setting, please reach out to us at [info@jetify.com](mailto://info@jetify.com)
31
31
32
32
### Is there a time limit on Devbox playgrounds?
33
33
@@ -37,7 +37,7 @@ playgrounds are also deleted every 12 hours, regardless of activity
37
37
38
38
### I want to request more resources, persistence, or a different OS for my VM
39
39
40
-
Please contact us at info@jetpack.io if you are interested in a custom solution for your enterprise.
40
+
Please contact us at info@jetify.com if you are interested in a custom solution for your enterprise.
Copy file name to clipboardexpand all lines: docs/app/docs/devbox_cloud/index.mdx
+5-5
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ Devbox.sh provides a sandboxed playground environment for you to learn how Devbo
16
16
17
17
You can launch a new playground from your browser by visiting [devbox.sh](https://devbox.sh), or click the button below to launch a quickstart shell:
18
18
19
-
[](https://devbox.sh/new)
19
+
[](https://devbox.sh/new)
20
20
21
21
Each Devbox playground comes with the Devbox CLI, Nix, and several common packages preinstalled, so you can easily run projects that include a `devbox.json`
22
22
@@ -30,7 +30,7 @@ If you are trying to open a private repository on Devbox.sh, we may ask you to i
30
30
31
31
1. Navigate to the Github Repo that you want to preview on Devbox.sh
32
32
2. Copy the URL, and prepend it with `https://devbox.sh/`.
33
-
1. For example, to open the Devbox repo, you would enter [https://devbox.sh/github.com/jetpack-io/devbox](http://devbox.sh/github.com/jetpack-io/devbox).
33
+
1. For example, to open the Devbox repo, you would enter [https://devbox.sh/github.com/jetify-com/devbox](http://devbox.sh/github.com/jetify-com/devbox).
34
34
1. You can also enter the URL on [devbox.sh](https://devbox.sh) and click the `Go` button
35
35
3. Follow the prompts to sign in with your Github Account.
36
36
4. Your project should now launch in a terminal session in your browser
@@ -47,7 +47,7 @@ For example: https://devbox.sh/github.com/org/repo?branch=staging would clone th
47
47
48
48
You can open a specific a subfolder of your project using the `folder` query parameter. This can be useful when working with a monorepo where your project's `devbox.json` lives in a subfolder.
49
49
50
-
For example: https://devbox.sh/github.com/jetpack-io/devbox?folder=examples/development/ruby will start your terminal in the Ruby example in the Devbox repo, load the configuration from the `devbox.json` in that folder, and then start a Devbox shell.
50
+
For example: https://devbox.sh/github.com/jetify-com/devbox?folder=examples/development/ruby will start your terminal in the Ruby example in the Devbox repo, load the configuration from the `devbox.json` in that folder, and then start a Devbox shell.
51
51
52
52
### Accessing a Port
53
53
@@ -67,12 +67,12 @@ Click on the `Open in Desktop` button on the top right corner, which will open u
67
67
68
68
If your project uses Devbox, you can make it easy for developers to test your project in a Devbox playground by adding the `Open in Devbox.sh` badge to your repo
69
69
70
-
[](https://devbox.sh/github.com/jetpack-io/devbox)
70
+
[](https://devbox.sh/github.com/jetify-com/devbox)
71
71
72
72
Add the following code to your README.md:
73
73
74
74
```md
75
-
[](https://devbox.sh/{path_to_repo})
75
+
[](https://devbox.sh/{path_to_repo})
0 commit comments