Skip to content

Commit

Permalink
Merge pull request #204 from codesandbox/remove-personal
Browse files Browse the repository at this point in the history
Remove personal
  • Loading branch information
necoline authored Nov 21, 2023
2 parents cfc227a + a7257d6 commit 3ef3576
Show file tree
Hide file tree
Showing 10 changed files with 88 additions and 74 deletions.
27 changes: 17 additions & 10 deletions packages/projects-docs/pages/faq.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ We currently provide [Browser Sandboxes](/learn/sandboxes/overview#what-is-a-bro
the sandbox or preview in a web browser.
- When using a container, the sandbox has a 1GB persistent storage limit, a 1GB vCPU soft
limit, and a hard memory limit of 2 GB.

Cloud Sandboxes are part of our evolved CodeSandbox experience, so we highly advise you to use them to avoid encountering these limitations.

## I'm getting a 'Request Entity too Large' error, what should I do?
Expand Down Expand Up @@ -156,7 +156,7 @@ If you're having issues with your database, you can check the logs of the contai

## How do I change the editor's theme?

To change the [theme of a Cloud Sandbox](https://codesandbox.io/docs/learn/repositories/themes), click on the CodeSandbox logo at the top left, then go to Settings > Preferences, and select a theme from the Themes dropdown. You can also do it from the [command palette](https://codesandbox.io/docs/learn/repositories/commandpalette).
To change the [theme of a Cloud Sandbox](https://codesandbox.io/docs/learn/repositories/themes), click on the CodeSandbox logo at the top left, then go to Settings > Preferences, and select a theme from the Themes dropdown. You can also do it from the [command palette](https://codesandbox.io/docs/learn/repositories/commandpalette).

On a Browser Sandbox, you can change the theme from File > Preferences > Color Theme in the editor. You can also set a custom VS Code theme on a Browser Sandbox. Open VS Code, Press (CMD or CTRL) +
SHIFT + P, Enter: '> Developer: Generate Color Scheme From Current Settings',
Expand All @@ -175,17 +175,18 @@ resolve it. For example:
[https://codesandbox.io/s/new?runonclick=1](https://codesandbox.io/s/new?runonclick=1)

## Can I push/pull from a GitLab, Azure DevOps, or BitBucket repository?

Yes. While our Repositories only have built-in push and sync capabilities for GitHub, you can connect to a remote repository from any other git provider.

To do that, use our terminal to `git remote add` the remote repository and then add your credentials for it. You can also add the authentication details to the CodeSandbox microVM using [environment variables](https://codesandbox.io/docs/learn/environment/secrets).

## How do I cancel my Personal Pro, Team Pro or Patron plan?
## How do I cancel my Pro or Patron plan?

For Team Pro & Personal Pro users, once you've logged in, you can downgrade your plan on the
[Settings page](https://codesandbox.io/dashboard/settings).
For Pro users, once you've logged in, you can downgrade your plan on the
[Settings page](https://codesandbox.io/dashboard/settings).

If you're on one of our legacy Patron plans you can cancel
your subscription on the [Patron page](https://codesandbox.io/patron).
your subscription on the [Patron page](https://codesandbox.io/patron).

</WrapContent>
<WrapContent>
Expand Down Expand Up @@ -216,17 +217,19 @@ Yes. Follow the steps below:
## More Questions?

If you have additional questions or need support, please use the community [Discord server](https://discord.gg/R32XxEGp4s).

</WrapContent>
<WrapContent>
## Sandboxes
## Sandboxes

### Why am I getting a git error resolving a dependency?

CodeSandbox for iOS is only compatible with dependencies hosted and accessible via HTTP or HTTPS.

This happens because the app doesn't provide local shell environments where you can run arbitrary commands, like git. Use the [CodeSandbox web editor](/learn/sandboxes/editors) instead.

You may find some of the following answers helpful if you have gone through the sections in this documentation but still haven’t solved your questions:

### I'm getting an error trying to run my sandbox in CodeSandbox for iOS. What could be the cause?

The root cause of the problem could be either a coding mistake on your side or a dependency trying to do something forbidden by iOS.
Expand All @@ -244,14 +247,18 @@ Only the scripts that start with `node` or the name of a dependency located insi
The runtime provides a `WEB_PORT` environment variable matching the port used by default by the in-app web browser. If your sandbox doesn't use the port in that environment variable, then you will need to fix the URL in the web browser to load the page on the right port.

### Why does my sandbox stop running when I move the app to the background?

This happens because iOS suspends the process while the application is in the background, which also suspends all its activity.

### My sandbox requires Node.js 14 but the app uses Node.js 12. How can I change the Node.js version?

The application uses a Node.js port that hasn’t been upgraded to Node.js 14 as we have been focused on integrating the new CodeSandbox experience instead. Stay tuned, as we will be making some updates.

## Repositories

### Why can't I make any changes to my project?

You likely have a protected branch selected (i.e. `main`). Forking a branch will create a new one where you can make changes.
</WrapContent>
</Tabs>
</WrapContent>

</Tabs>
8 changes: 6 additions & 2 deletions packages/projects-docs/pages/learn/boxy/faqs.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,19 @@ description: Frequently asked questions
# Boxy FAQs

### How does Boxy differ from ChatGPT?

Although Boxy is built using GPT at its core, one key distinguishing factor is that Boxy is aware of the code in your sandbox or repository. As a result, Boxy's suggestions will consider existing patterns in your project's code.

### How do I get access to Boxy?
Boxy and all CodeSandbox AI-powered tools are available to Personal Pro and Team Pro users. You can [upgrade](https://codesandbox.io/pro) or [start a free trial](https://codesandbox.io/pro?team) to experience development with Boxy.

Boxy and all CodeSandbox AI-powered tools are available to Pro workspaces. You can [upgrade](https://codesandbox.io/pro) or start a free trial to experience development with Boxy.

### Is Boxy available in all CodeSandbox plans?

No. Boxy is only available to [Pro subscribers](https://codesandbox.io/pro).

### Is Boxy available for browser sandboxes?

No. Boxy is exclusively available in cloud sandboxes and repositories. However, you can easily [fork a browser sandbox into a cloud sandbox](/tutorial/convert-browser-sandbox-cloud) to get access to Boxy. This is available through the "sparkles" icon at the bottom of the left sidebar, as seen below.

![Convert browser sandbox](../images/convert-sandbox-from-ai.png)
![Convert browser sandbox](../images/convert-sandbox-from-ai.png)
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion packages/projects-docs/pages/learn/plans/_meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"plan-overview": "Choosing a plan",
"workspace": "Workspaces",
"pricing-faq": "Pricing FAQ",
"permissions": "User Permissions",
"permissions": "User permissions",
"preferences": "Preferences",
"trials": "Trials"
}
23 changes: 12 additions & 11 deletions packages/projects-docs/pages/learn/plans/plan-overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,28 +7,29 @@ import { Callout } from 'nextra-theme-docs'

# Plans

## Personal
Everyone that signs up to CodeSandbox gets a free personal workspace. Here you can work on unlimited public sandboxes and repositories. If you want to work on anything private or work in collaboration with others, you will need a Pro subscription.
## Free

## Pro
Pro offers unlimited collaboration, umlimited sandboxes and repositories (both private and public), higher VM specs and [much more](https://codesandbox.io/pricing).
Free workspaces are a great way to get started with CodeSandbox. By simply creating an account and opening a workspace, you can create any public sandbox or import any public repository.
Additionally, you may invite others to join the workspace so that you can collaborate on sandboxes or repositories.
If at any time you need access to private sandboxes or repos, or are in need of higher VMs, a trial provides access to 2 weeks of free access to Pro.

## Pro

Pro offers unlimited collaboration, unlimited sandboxes and repositories (both private and public), higher VM specs and [much more](https://codesandbox.io/pricing).

### Creating a new Pro worksapce
### Creating a new Pro workspace

1. Go to the [Dashboard](https://codesandbox.io/dashboard).
2. Open the workspace selector and click on the `Create a Pro workspace` button at the bottom.
3. Select `Start Trial` or `Create a Pro workspace` depending on your elibility for a trial.
3. Choose a **workspace name**.
4. Add **members** by inviting them via email or searching for their CodeSandbox username.

![Manage your team](../images/teams-new.jpg)
3. Select `Start Trial` or `Create a Pro workspace` depending on your eligibility for a trial.
4. Choose a **workspace name**.
5. Add **members** by inviting them via email or searching for their CodeSandbox username.

![Manage your team](../images/teams-new.png)

### Add or remove people from a workspace

1. Go to the [Dashboard](https://codesandbox.io/dashboard).
1. In the top left corner, select the **team** you'd like to edit in the dropdown.
1. In the top left corner, select the **team** you'd like to edit in the dropdown.
1. Click on the **settings** icon next to the team.
1. Add or remove people through the **Members** section by inviting them via email or searching for their CodeSandbox username.
2 changes: 1 addition & 1 deletion packages/projects-docs/pages/learn/plans/trials.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ By adding your team members to CodeSandbox, you can experience the possibilities

This means that you can simply share the link of a PR or branch with anyone from your workspace to get timely feedback and shorten the review cycle.

### More VM Specs
### More VM specs
Our Pro trial allows teams to work with higher VM specs, thereby reducing potential frustration with speed or memory limits. This is especially important when you are working with more complex codebases.

### Access to private repositories
Expand Down
Loading

1 comment on commit 3ef3576

@vercel
Copy link

@vercel vercel bot commented on 3ef3576 Nov 21, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.