Skip to content

Commit

Permalink
update jetpack.io name in docs (jetify-com#1971)
Browse files Browse the repository at this point in the history
## Summary

Update jetpack.io in docs

## How was it tested?

Tested with `docusaurus build`

---------

Signed-off-by: John Lago <750845+Lagoja@users.noreply.github.com>
Co-authored-by: Lucille Hua <lucille.hua@jetpack.io>
  • Loading branch information
Lagoja and LucilleH authored Apr 9, 2024
1 parent 1f86e65 commit dcb7ae1
Show file tree
Hide file tree
Showing 96 changed files with 293 additions and 287 deletions.
2 changes: 1 addition & 1 deletion .envrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@

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

# check out https://www.jetpack.io/devbox/docs/ide_configuration/direnv/
# check out https://www.jetify.com/devbox/docs/ide_configuration/direnv/
# for more details
2 changes: 1 addition & 1 deletion .schema/devbox-plugin.schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft-04/schema#",
"$id": "https://github.com/jetpack-io/devbox/plugins",
"$id": "https://github.com/jetify-com/devbox/plugins",
"title": "Devbox Plugin Schema",
"description": "Defines fields and values for public devbox plugins",
"type": "object",
Expand Down
10 changes: 5 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ The easiest way to develop Devbox is with Devbox!

1. Install Devbox:

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

2. Clone this repository:

git clone https://github.com/jetpack-io/devbox.git go.jetpack.io/devbox
cd go.jetpack.io/devbox
git clone https://github.com/jetify-com/devbox.git go.jetify.com/devbox
cd go.jetify.com/devbox

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

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

3. Clone this repository and build Devbox:

git clone https://github.com/jetpack-io/devbox.git go.jetpack.io/devbox
cd go.jetpack.io/devbox
git clone https://github.com/jetify-com/devbox.git go.jetify.com/devbox
cd go.jetify.com/devbox
go build ./cmd/devbox
./devbox run -- echo hello, world

Expand Down
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@

### Instant, easy, and predictable development environments

[![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/)
[![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/)

## What is it?

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

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

Devbox was originally developed by [jetpack.io](https://www.jetpack.io) and is internally powered by `nix`.
Devbox was originally developed by [Jetify](https://www.jetify.com) and is internally powered by `nix`.

## Demo

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

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

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:

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

```sh
curl -fsSL https://get.jetpack.io/devbox | bash
curl -fsSL https://get.jetify.com/devbox | bash
```

Read more on the [Devbox docs](https://www.jetpack.io/devbox/docs/installing_devbox/).
Read more on the [Devbox docs](https://www.jetify.com/devbox/docs/installing_devbox/).

## Benefits

Expand Down Expand Up @@ -127,19 +127,19 @@ In this quickstart we’ll create a development shell with specific tools instal
exit
```

Read more on the [Devbox docs Quickstart](https://www.jetpack.io/devbox/docs/quickstart/).
Read more on the [Devbox docs Quickstart](https://www.jetify.com/devbox/docs/quickstart/).

## Additional commands

`devbox help` - see all commands

See the [CLI Reference](https://www.jetpack.io/devbox/docs/cli_reference/devbox/) for the full list of commands.
See the [CLI Reference](https://www.jetify.com/devbox/docs/cli_reference/devbox/) for the full list of commands.

## Join our Developer Community

+ Chat with us by joining the [Jetpack.io Discord Server](https://discord.gg/jetpack-io) – we have a #devbox channel dedicated to this project.
+ File bug reports and feature requests using [Github Issues](https://github.com/jetpack-io/devbox/issues)
+ Follow us on [Jetpack's Twitter](https://twitter.com/jetpack_io) for product updates
+ Chat with us by joining the [Jetify Discord Server](https://discord.gg/jetify) – we have a #devbox channel dedicated to this project.
+ File bug reports and feature requests using [Github Issues](https://github.com/jetify-com/devbox/issues)
+ Follow us on [Jetify's Twitter](https://twitter.com/jetify_com) for product updates

## Contributing

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

## License

This project is proudly open-source under the [Apache 2.0 License](https://github.com/jetpack-io/devbox/blob/main/LICENSE)
This project is proudly open-source under the [Apache 2.0 License](https://github.com/jetify-com/devbox/blob/main/LICENSE)
37 changes: 22 additions & 15 deletions devbox.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<!-- gen-readme start - generated by https://github.com/jetpack-io/devbox/ -->
<!-- gen-readme start - generated by https://github.com/jetify-com/devbox/ -->
# devbox

Instant, easy, and predictable development environments

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

Install devbox:
```sh
curl -fsSL https://get.jetpack.io/devbox | bash
curl -fsSL https://get.jetify.com/devbox | bash
```

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

* [build](#devbox-run-build)
* [build-all](#devbox-run-build-all)
* [build-darwin-amd64](#devbox-run-build-darwin-amd64)
* [build-darwin-arm64](#devbox-run-build-darwin-arm64)
* [build-linux-amd64](#devbox-run-build-linux-amd64)
* [build-linux-arm64](#devbox-run-build-linux-arm64)
* [code](#devbox-run-code)
* [fmt](#devbox-run-fmt)
* [lint](#devbox-run-lint)
* [test](#devbox-run-test)
* [tidy](#devbox-run-tidy)
* [update-examples](#devbox-run-update-examples)
- [devbox](#devbox)
- [Getting Started](#getting-started)
- [Scripts](#scripts)
- [Environment](#environment)
- [Shell Init Hook](#shell-init-hook)
- [Packages](#packages)
- [Script Details](#script-details)
- [devbox run build](#devbox-run-build)
- [devbox run build-all](#devbox-run-build-all)
- [devbox run build-darwin-amd64](#devbox-run-build-darwin-amd64)
- [devbox run build-darwin-arm64](#devbox-run-build-darwin-arm64)
- [devbox run build-linux-amd64](#devbox-run-build-linux-amd64)
- [devbox run build-linux-arm64](#devbox-run-build-linux-arm64)
- [devbox run code](#devbox-run-code)
- [devbox run fmt](#devbox-run-fmt)
- [devbox run lint](#devbox-run-lint)
- [devbox run test](#devbox-run-test)
- [devbox run tidy](#devbox-run-tidy)
- [devbox run update-examples](#devbox-run-update-examples)

## Environment

Expand Down
4 changes: 2 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This website is built using [Docusaurus 2](https://docusaurus.io/), a modern sta

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

[![Open In Devbox.sh](https://jetpack.io/img/devbox/open-in-devbox.svg)](https://devbox.sh/github.com/jetpack-io/devbox?folder=docs/app)
[![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)

## Installation

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

When a pull request is opened, it will automatically deploy via CICD to a preview.
When a pull request is merged, it will automatically deploy to production.
Check https://www.jetpack.io/devbox/ after merge to see the latest changes.
Check https://www.jetify.com/devbox/ after merge to see the latest changes.
2 changes: 1 addition & 1 deletion docs/app/devbox.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"packages": {
"nodejs@latest": {
"last_modified": "2024-02-24T23:06:34Z",
"plugin_version": "0.0.1",
"plugin_version": "0.0.2",
"resolved": "github:NixOS/nixpkgs/9a9dae8f6319600fa9aebde37f340975cab4b8c0#nodejs_21",
"source": "devbox-search",
"version": "21.6.2",
Expand Down
20 changes: 10 additions & 10 deletions docs/app/docs/cli_reference/devbox_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ devbox create [dir] --template <template> [flags]

## List of templates

* [**go**](https://github.com/jetpack-io/devbox/tree/main/examples/development/go)
* [**node-npm**](https://github.com/jetpack-io/devbox/tree/main/examples/development/nodejs/nodejs-npm/)
* [**node-typescript**](https://github.com/jetpack-io/devbox/tree/main/examples/development/nodejs/nodejs-typescript/)
* [**node-yarn**](https://github.com/jetpack-io/devbox/tree/main/examples/development/nodejs/nodejs-yarn/)
* [**php**](https://github.com/jetpack-io/devbox/tree/main/examples/development/php/)
* [**python-pip**](https://github.com/jetpack-io/devbox/tree/main/examples/development/python/pip/)
* [**python-pipenv**](https://github.com/jetpack-io/devbox/tree/main/examples/development/python/pipenv/)
* [**python-poetry**](https://github.com/jetpack-io/devbox/tree/main/examples/development/python/poetry/)
* [**ruby**](https://github.com/jetpack-io/devbox/tree/main/examples/development/ruby/)
* [**rust**](https://github.com/jetpack-io/devbox/tree/main/examples/development/rust/)
* [**go**](https://github.com/jetify-com/devbox/tree/main/examples/development/go)
* [**node-npm**](https://github.com/jetify-com/devbox/tree/main/examples/development/nodejs/nodejs-npm/)
* [**node-typescript**](https://github.com/jetify-com/devbox/tree/main/examples/development/nodejs/nodejs-typescript/)
* [**node-yarn**](https://github.com/jetify-com/devbox/tree/main/examples/development/nodejs/nodejs-yarn/)
* [**php**](https://github.com/jetify-com/devbox/tree/main/examples/development/php/)
* [**python-pip**](https://github.com/jetify-com/devbox/tree/main/examples/development/python/pip/)
* [**python-pipenv**](https://github.com/jetify-com/devbox/tree/main/examples/development/python/pipenv/)
* [**python-poetry**](https://github.com/jetify-com/devbox/tree/main/examples/development/python/poetry/)
* [**ruby**](https://github.com/jetify-com/devbox/tree/main/examples/development/ruby/)
* [**rust**](https://github.com/jetify-com/devbox/tree/main/examples/development/rust/)


## Options
Expand Down
2 changes: 1 addition & 1 deletion docs/app/docs/cli_reference/devbox_global_push.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# devbox global push

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

```bash
devbox global push <git-repo> [flags]
Expand Down
4 changes: 2 additions & 2 deletions docs/app/docs/continuous_integration/github_action.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ In your project's workflow YAML, add the following step:

```yaml
- name: Install devbox
uses: jetpack-io/devbox-install-action@v0.8.0
uses: jetify-com/devbox-install-action@v0.8.0
```
## Example Workflow
Expand All @@ -33,7 +33,7 @@ jobs:
- uses: actions/checkout@v4

- name: Install devbox
uses: jetpack-io/devbox-install-action@v0.8.0
uses: jetify-com/devbox-install-action@v0.8.0

- name: Run arbitrary commands
run: devbox run -- echo "done!"
Expand Down
10 changes: 5 additions & 5 deletions docs/app/docs/contributor-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ This quickstart shows you how to install Devbox, and use it to start a developme
Use the following install script to get the latest version of Devbox:

```bash
curl -fsSL https://get.jetpack.io/devbox | bash
curl -fsSL https://get.jetify.com/devbox | bash
```

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.
Expand Down Expand Up @@ -72,12 +72,12 @@ Devbox requires the [Nix Package Manager](https://nixos.org/download.html). If N
* **[Devbox Global](devbox_global.md):** Learn how to use the devbox as a global package manager
* **[Devbox Scripts](guides/scripts.md):** Automate setup steps and configuration for your shell using Devbox Scripts.
* **[Configuration Guide](configuration.md):** Learn how to configure your shell and dev environment with `devbox.json`.
* **[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.
* **[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.
### Use Devbox with your IDE
* **[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.
* **[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.
* **[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.
### Get Involved
* **[Join our Discord Community](https://discord.gg/jetpack-io):** Chat with the development team and our growing community of Devbox users.
* **[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.
* **[Join our Discord Community](https://discord.gg/jetify):** Chat with the development team and our growing community of Devbox users.
* **[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.
4 changes: 2 additions & 2 deletions docs/app/docs/devbox_cloud/beta_faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Devbox.sh is free to use during the Beta period, subject to the restrictions des
* **RAM**: 8 GB
* **SSD**: 8 GB

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

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

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

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

Please contact us at info@jetpack.io if you are interested in a custom solution for your enterprise.
Please contact us at info@jetify.com if you are interested in a custom solution for your enterprise.

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

Expand Down
10 changes: 5 additions & 5 deletions docs/app/docs/devbox_cloud/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Devbox.sh provides a sandboxed playground environment for you to learn how Devbo

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:

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

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`

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

1. Navigate to the Github Repo that you want to preview on Devbox.sh
2. Copy the URL, and prepend it with `https://devbox.sh/`.
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).
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).
1. You can also enter the URL on [devbox.sh](https://devbox.sh) and click the `Go` button
3. Follow the prompts to sign in with your Github Account.
4. Your project should now launch in a terminal session in your browser
Expand All @@ -47,7 +47,7 @@ For example: https://devbox.sh/github.com/org/repo?branch=staging would clone th

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.

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

### Accessing a Port

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

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

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

Add the following code to your README.md:

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

## More Info
Expand Down
Loading

0 comments on commit dcb7ae1

Please sign in to comment.