Skip to content
This repository was archived by the owner on Apr 6, 2021. It is now read-only.

Commit f051f18

Browse files
committed
Merge pull request #160 from c9/picking_a_plan
Added doc with workspace details for picking a plan
2 parents f0fde38 + 6897ca7 commit f051f18

File tree

4 files changed

+64
-1
lines changed

4 files changed

+64
-1
lines changed

out/writing_a_php_app.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@
103103
<li class="nav-submenu-item"><a href="setting_up_gitlab_workspace.html">Setting up a GitLab Workspace</a></li>
104104
<li class="nav-submenu-item"><a href="ftp_workspaces.html">Creating an FTP Workspace</a></li>
105105
<li class="nav-submenu-item"><a href="run_your_own_workspace.html">Running Your Own SSH Workspace</a></li>
106+
<li class="nav-submenu-item"><a href="picking_a_plan.html">Picking a Plan</a></li>
106107
</ul>
107108
</li>
108109
<li class="nav-section">

recentFiles.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[{"filename":"setting_up_postgresql","mtime":1422392332000,"pageTitle":"PostgreSQL"},{"filename":"frameworks_wordpress","mtime":1421859765000,"pageTitle":"Getting Started with Wordpress"},{"filename":"deploying_code","mtime":1421769253000,"pageTitle":"Deploying Your Code"},{"filename":"java_runner","mtime":1421769253000,"pageTitle":"Java Runner"},{"filename":"frameworks_jekyll","mtime":1421769253000,"pageTitle":"Framework: Jekyll"}]
1+
[{"filename":"faq_general","mtime":1422453385000,"pageTitle":"FAQ: General"},{"filename":"setting_up_postgresql","mtime":1422453385000,"pageTitle":"PostgreSQL"},{"filename":"picking_a_plan","mtime":1422453317000,"pageTitle":"Picking a Plan"},{"filename":"frameworks_wordpress","mtime":1421859765000,"pageTitle":"Getting Started with Wordpress"},{"filename":"deploying_code","mtime":1421769253000,"pageTitle":"Deploying Your Code"}]

src/workspaces/picking_a_plan.md

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# Picking a Plan
2+
3+
The [Plans and Pricing Page](https://c9.io/web/site/pricing) has the basics for the available plans but here, we'll break down the details of workspaces.
4+
5+
## Workspace Choices
6+
With Cloud9, you write code, run commands, and build applications in workspaces (virtual machines) hosted on Google Cloud. You're free to resize workspaces at any time so don't fret about their initial sizing. Following are the different types of workspaces and their properties:
7+
8+
### Micro Workspace
9+
- 512MB RAM
10+
- 1GB Disk space
11+
- 1 CPU
12+
- Private
13+
14+
### Small Workspace
15+
- 512MB RAM
16+
- 5GB Disk space
17+
- 1 CPU
18+
- Private
19+
20+
### Medium Workspace
21+
- 1GB RAM
22+
- 10GB Disk space
23+
- 1 CPU
24+
- Private
25+
26+
### Large Workspace
27+
- 2GB RAM
28+
- 20GB Disk space
29+
- 1 CPU
30+
- Private
31+
32+
### SSH Workspace
33+
- Resources determined by user
34+
- Private
35+
36+
### Community Workspaces
37+
- 512MB RAM
38+
- 1GB Disk space
39+
- 1 CPU
40+
- Publicly readable
41+
- Archived after a week of inactivity (restored unchanged when you open it again)
42+
43+
Given the resources from your plan, you may make as many private workspaces as you'd like. For example, if you're signed up for the large plan with 80gb of storage, you could use that to have 4 different large workspaces, each with 20gb of storage. With those 4 workspaces, you would have no resources left to make further private workspaces although you could still make more community workspaces.
44+
45+
## Reaching the Limits
46+
47+
When a workspace reaches its RAM limit, you will be notified and processes may be killed to stay within the limit.
48+
49+
When the storage limit within a workspace is reached, the terminal will display a message to let you know. Any downloads will be stopped.
50+
51+
## All plans
52+
53+
The following features are provided with the free plan and all paid plans.
54+
55+
- __Unlimited Community Workspaces__ - Each community workspace is readable by anyone, like a public GitHub repository.
56+
- __Team collaboration__ - You can invite coworkers, classmates, and anyone with an email address or Cloud9 account to work with you, real-time, giving read/write privileges to whomever you choose. Collaboration takes place live so you can see one another manipulating code real-time.
57+
- __VMs hosted on Google Cloud__ - Each VM/workspace is allotted resources according to your chosing. Those resources are important because each workspace is running on a VM hosted on Google Cloud.
58+
- __Sudo Shell Access/Terminal__ - Sudo access allows you to install your own programs or languages, giving them nearly the same amount of access they might have on a local machine.
59+
- __SSD Performance__ - VM's are hosted on SSD's to speed up processes and development.
60+
- __Running on Docker__ - Workspaces are powered by Docker Ubuntu containers that give you full freedom over your environment, including sudo rights.

templates/default/toc.jade

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,8 @@
109109
a(href='ftp_workspaces.html') Creating an FTP Workspace
110110
li.nav-submenu-item
111111
a(href='run_your_own_workspace.html') Running Your Own SSH Workspace
112+
li.nav-submenu-item
113+
a(href='picking_a_plan.html') Picking a Plan
112114
li.nav-section
113115
.nav-section-header
114116
a(href='javascript:void(0)') Running and Debugging Code

0 commit comments

Comments
 (0)