Skip to content

Commit dcb7ae1

Browse files
LagojaLucilleH
andauthored
update jetpack.io name in docs (#1971)
## 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]>
1 parent 1f86e65 commit dcb7ae1

File tree

96 files changed

+293
-287
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+293
-287
lines changed

.envrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33

44
eval "$(devbox generate direnv --print-envrc)"
55

6-
# check out https://www.jetpack.io/devbox/docs/ide_configuration/direnv/
6+
# check out https://www.jetify.com/devbox/docs/ide_configuration/direnv/
77
# for more details

.schema/devbox-plugin.schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://json-schema.org/draft-04/schema#",
3-
"$id": "https://github.com/jetpack-io/devbox/plugins",
3+
"$id": "https://github.com/jetify-com/devbox/plugins",
44
"title": "Devbox Plugin Schema",
55
"description": "Defines fields and values for public devbox plugins",
66
"type": "object",

CONTRIBUTING.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ The easiest way to develop Devbox is with Devbox!
1414

1515
1. Install Devbox:
1616

17-
curl -fsSL https://get.jetpack.io/devbox | bash
17+
curl -fsSL https://get.jetify.com/devbox | bash
1818

1919
2. Clone this repository:
2020

21-
git clone https://github.com/jetpack-io/devbox.git go.jetpack.io/devbox
22-
cd go.jetpack.io/devbox
21+
git clone https://github.com/jetify-com/devbox.git go.jetify.com/devbox
22+
cd go.jetify.com/devbox
2323

2424
3. Build the Devbox CLI. If you don't have Nix installed, Devbox will automatically install it for you before building:
2525

@@ -46,8 +46,8 @@ If you are unable to install or use Devbox, you can manually replicate the envir
4646

4747
3. Clone this repository and build Devbox:
4848

49-
git clone https://github.com/jetpack-io/devbox.git go.jetpack.io/devbox
50-
cd go.jetpack.io/devbox
49+
git clone https://github.com/jetify-com/devbox.git go.jetify.com/devbox
50+
cd go.jetify.com/devbox
5151
go build ./cmd/devbox
5252
./devbox run -- echo hello, world
5353

README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,21 @@
88

99
### Instant, easy, and predictable development environments
1010

11-
[![Join Discord](https://img.shields.io/discord/903306922852245526?color=7389D8&label=discord&logo=discord&logoColor=ffffff)](https://discord.gg/agbskCJXk2) ![License: Apache 2.0](https://img.shields.io/github/license/jetpack-io/devbox) [![version](https://img.shields.io/github/v/release/jetpack-io/devbox?color=green&label=version&sort=semver)](https://github.com/jetpack-io/devbox/releases) [![tests](https://github.com/jetpack-io/devbox/actions/workflows/cli-post-release.yml/badge.svg)](https://github.com/jetpack-io/devbox/actions/workflows/cli-release.yml?branch=main) [![Built with Devbox](https://jetpack.io/img/devbox/shield_galaxy.svg)](https://jetpack.io/devbox/docs/contributor-quickstart/)
11+
[![Join Discord](https://img.shields.io/discord/903306922852245526?color=7389D8&label=discord&logo=discord&logoColor=ffffff)](https://discord.gg/agbskCJXk2) ![License: Apache 2.0](https://img.shields.io/github/license/jetify-com/devbox) [![version](https://img.shields.io/github/v/release/jetify-com/devbox?color=green&label=version&sort=semver)](https://github.com/jetify-com/devbox/releases) [![tests](https://github.com/jetify-com/devbox/actions/workflows/cli-post-release.yml/badge.svg)](https://github.com/jetify-com/devbox/actions/workflows/cli-release.yml?branch=main) [![Built with Devbox](https://www.jetify.com/img/devbox/shield_galaxy.svg)](https://www.jetify.com/devbox/docs/contributor-quickstart/)
1212

1313
## What is it?
1414

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.
1616

1717
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
1818

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`.
2020

2121
## Demo
2222

2323
You can try out Devbox in your browser using the button below:
2424

25-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/new)
25+
[![Open In Devbox.sh](https://www.jetify.com/img/devbox/open-in-devbox.svg)](https://devbox.sh/new)
2626

2727
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:
2828

@@ -33,10 +33,10 @@ The example below creates a development environment with `python 2.7` and `go 1.
3333
Use the following install script to get the latest version of Devbox:
3434

3535
```sh
36-
curl -fsSL https://get.jetpack.io/devbox | bash
36+
curl -fsSL https://get.jetify.com/devbox | bash
3737
```
3838

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/).
4040

4141
## Benefits
4242

@@ -127,19 +127,19 @@ In this quickstart we’ll create a development shell with specific tools instal
127127
exit
128128
```
129129

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/).
131131

132132
## Additional commands
133133

134134
`devbox help` - see all commands
135135

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.
137137

138138
## Join our Developer Community
139139

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
143143

144144
## Contributing
145145

@@ -157,4 +157,4 @@ Thanks to [Nix](https://nixos.org/) for providing isolated shells.
157157

158158
## License
159159

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)

devbox.md

+22-15
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
<!-- gen-readme start - generated by https://github.com/jetpack-io/devbox/ -->
1+
<!-- gen-readme start - generated by https://github.com/jetify-com/devbox/ -->
22
# devbox
33

44
Instant, easy, and predictable development environments
55

66
## Getting Started
7-
This project uses [devbox](https://github.com/jetpack-io/devbox) to manage its development environment.
7+
This project uses [devbox](https://github.com/jetify-com/devbox) to manage its development environment.
88

99
Install devbox:
1010
```sh
11-
curl -fsSL https://get.jetpack.io/devbox | bash
11+
curl -fsSL https://get.jetify.com/devbox | bash
1212
```
1313

1414
Start the devbox shell:
@@ -23,18 +23,25 @@ devbox run <script>
2323
## Scripts
2424
Scripts are custom commands that can be run using this project's environment. This project has the following scripts:
2525

26-
* [build](#devbox-run-build)
27-
* [build-all](#devbox-run-build-all)
28-
* [build-darwin-amd64](#devbox-run-build-darwin-amd64)
29-
* [build-darwin-arm64](#devbox-run-build-darwin-arm64)
30-
* [build-linux-amd64](#devbox-run-build-linux-amd64)
31-
* [build-linux-arm64](#devbox-run-build-linux-arm64)
32-
* [code](#devbox-run-code)
33-
* [fmt](#devbox-run-fmt)
34-
* [lint](#devbox-run-lint)
35-
* [test](#devbox-run-test)
36-
* [tidy](#devbox-run-tidy)
37-
* [update-examples](#devbox-run-update-examples)
26+
- [devbox](#devbox)
27+
- [Getting Started](#getting-started)
28+
- [Scripts](#scripts)
29+
- [Environment](#environment)
30+
- [Shell Init Hook](#shell-init-hook)
31+
- [Packages](#packages)
32+
- [Script Details](#script-details)
33+
- [devbox run build](#devbox-run-build)
34+
- [devbox run build-all](#devbox-run-build-all)
35+
- [devbox run build-darwin-amd64](#devbox-run-build-darwin-amd64)
36+
- [devbox run build-darwin-arm64](#devbox-run-build-darwin-arm64)
37+
- [devbox run build-linux-amd64](#devbox-run-build-linux-amd64)
38+
- [devbox run build-linux-arm64](#devbox-run-build-linux-arm64)
39+
- [devbox run code](#devbox-run-code)
40+
- [devbox run fmt](#devbox-run-fmt)
41+
- [devbox run lint](#devbox-run-lint)
42+
- [devbox run test](#devbox-run-test)
43+
- [devbox run tidy](#devbox-run-tidy)
44+
- [devbox run update-examples](#devbox-run-update-examples)
3845

3946
## Environment
4047

docs/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This website is built using [Docusaurus 2](https://docusaurus.io/), a modern sta
44

55
You can also test and contribute to our docs online using Devbox Cloud!
66

7-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox?folder=docs/app)
7+
[![Open In Devbox.sh](https://www.jetify.com/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetify-com/devbox?folder=docs/app)
88

99
## Installation
1010

@@ -34,4 +34,4 @@ This command generates static content into the `build` directory and can be serv
3434

3535
When a pull request is opened, it will automatically deploy via CICD to a preview.
3636
When a pull request is merged, it will automatically deploy to production.
37-
Check https://www.jetpack.io/devbox/ after merge to see the latest changes.
37+
Check https://www.jetify.com/devbox/ after merge to see the latest changes.

docs/app/devbox.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"packages": {
44
"nodejs@latest": {
55
"last_modified": "2024-02-24T23:06:34Z",
6-
"plugin_version": "0.0.1",
6+
"plugin_version": "0.0.2",
77
"resolved": "github:NixOS/nixpkgs/9a9dae8f6319600fa9aebde37f340975cab4b8c0#nodejs_21",
88
"source": "devbox-search",
99
"version": "21.6.2",

docs/app/docs/cli_reference/devbox_create.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@ devbox create [dir] --template <template> [flags]
1212

1313
## List of templates
1414

15-
* [**go**](https://github.com/jetpack-io/devbox/tree/main/examples/development/go)
16-
* [**node-npm**](https://github.com/jetpack-io/devbox/tree/main/examples/development/nodejs/nodejs-npm/)
17-
* [**node-typescript**](https://github.com/jetpack-io/devbox/tree/main/examples/development/nodejs/nodejs-typescript/)
18-
* [**node-yarn**](https://github.com/jetpack-io/devbox/tree/main/examples/development/nodejs/nodejs-yarn/)
19-
* [**php**](https://github.com/jetpack-io/devbox/tree/main/examples/development/php/)
20-
* [**python-pip**](https://github.com/jetpack-io/devbox/tree/main/examples/development/python/pip/)
21-
* [**python-pipenv**](https://github.com/jetpack-io/devbox/tree/main/examples/development/python/pipenv/)
22-
* [**python-poetry**](https://github.com/jetpack-io/devbox/tree/main/examples/development/python/poetry/)
23-
* [**ruby**](https://github.com/jetpack-io/devbox/tree/main/examples/development/ruby/)
24-
* [**rust**](https://github.com/jetpack-io/devbox/tree/main/examples/development/rust/)
15+
* [**go**](https://github.com/jetify-com/devbox/tree/main/examples/development/go)
16+
* [**node-npm**](https://github.com/jetify-com/devbox/tree/main/examples/development/nodejs/nodejs-npm/)
17+
* [**node-typescript**](https://github.com/jetify-com/devbox/tree/main/examples/development/nodejs/nodejs-typescript/)
18+
* [**node-yarn**](https://github.com/jetify-com/devbox/tree/main/examples/development/nodejs/nodejs-yarn/)
19+
* [**php**](https://github.com/jetify-com/devbox/tree/main/examples/development/php/)
20+
* [**python-pip**](https://github.com/jetify-com/devbox/tree/main/examples/development/python/pip/)
21+
* [**python-pipenv**](https://github.com/jetify-com/devbox/tree/main/examples/development/python/pipenv/)
22+
* [**python-poetry**](https://github.com/jetify-com/devbox/tree/main/examples/development/python/poetry/)
23+
* [**ruby**](https://github.com/jetify-com/devbox/tree/main/examples/development/ruby/)
24+
* [**rust**](https://github.com/jetify-com/devbox/tree/main/examples/development/rust/)
2525

2626

2727
## Options

docs/app/docs/cli_reference/devbox_global_push.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# devbox global push
22

3-
Push a [global] config. Leave empty to use jetpack cloud. Can be a git repo for self storage.
3+
Push a [global] config. Leave empty to use Jetify sync. Can be a git repo for self storage.
44

55
```bash
66
devbox global push <git-repo> [flags]

docs/app/docs/continuous_integration/github_action.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ In your project's workflow YAML, add the following step:
1414

1515
```yaml
1616
- name: Install devbox
17-
uses: jetpack-io/[email protected]
17+
uses: jetify-com/[email protected]
1818
```
1919
2020
## Example Workflow
@@ -33,7 +33,7 @@ jobs:
3333
- uses: actions/checkout@v4
3434

3535
- name: Install devbox
36-
uses: jetpack-io/[email protected]
36+
uses: jetify-com/[email protected]
3737

3838
- name: Run arbitrary commands
3939
run: devbox run -- echo "done!"

docs/app/docs/contributor-quickstart.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This quickstart shows you how to install Devbox, and use it to start a developme
1616
Use the following install script to get the latest version of Devbox:
1717

1818
```bash
19-
curl -fsSL https://get.jetpack.io/devbox | bash
19+
curl -fsSL https://get.jetify.com/devbox | bash
2020
```
2121

2222
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
7272
* **[Devbox Global](devbox_global.md):** Learn how to use the devbox as a global package manager
7373
* **[Devbox Scripts](guides/scripts.md):** Automate setup steps and configuration for your shell using Devbox Scripts.
7474
* **[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.
7676
7777
### Use Devbox with your IDE
7878
* **[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.
8080
8181
### 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.

docs/app/docs/devbox_cloud/beta_faq.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Devbox.sh is free to use during the Beta period, subject to the restrictions des
2727
* **RAM**: 8 GB
2828
* **SSD**: 8 GB
2929

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)
3131

3232
### Is there a time limit on Devbox playgrounds?
3333

@@ -37,7 +37,7 @@ playgrounds are also deleted every 12 hours, regardless of activity
3737

3838
### I want to request more resources, persistence, or a different OS for my VM
3939

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.
4141

4242
### What OS does the Devbox.sh use?
4343

docs/app/docs/devbox_cloud/index.mdx

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Devbox.sh provides a sandboxed playground environment for you to learn how Devbo
1616

1717
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:
1818

19-
[![Open in Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/new)
19+
[![Open in Devbox.sh](https://www.jetify.com/img/devbox/open-in-devbox.svg)](https://devbox.sh/new)
2020

2121
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`
2222

@@ -30,7 +30,7 @@ If you are trying to open a private repository on Devbox.sh, we may ask you to i
3030

3131
1. Navigate to the Github Repo that you want to preview on Devbox.sh
3232
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).
3434
1. You can also enter the URL on [devbox.sh](https://devbox.sh) and click the `Go` button
3535
3. Follow the prompts to sign in with your Github Account.
3636
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
4747

4848
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.
4949

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.
5151

5252
### Accessing a Port
5353

@@ -67,12 +67,12 @@ Click on the `Open in Desktop` button on the top right corner, which will open u
6767

6868
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
6969

70-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox)
70+
[![Open In Devbox.sh](https://www.jetify.com/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetify-com/devbox)
7171

7272
Add the following code to your README.md:
7373

7474
```md
75-
[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/{path_to_repo})
75+
[![Open In Devbox.sh](https://www.jetify.com/img/devbox/open-in-devbox.svg)](https://devbox.sh/{path_to_repo})
7676
```
7777

7878
## More Info

0 commit comments

Comments
 (0)