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
Copy file name to clipboardExpand all lines: self-hosting/activate-license.mdx
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,24 +1,24 @@
1
1
---
2
2
title: Activate License
3
-
sidebarTitle: Activate License
3
+
sidebarTitle: Activate license
4
4
---
5
5
6
6
If you are on the Community edition and want to upgrade to a paid plan, see [Upgrade from Community](/self-hosting/manage-plans/upgrade-from-community).
7
7
8
-
To upgrade to a paid plan on the Enterprise edition, follow the steps below:
8
+
To activate the license of a paid plan on the Enterprise edition, follow the steps below:
9
9
10
10
1. Login to the [Plane Prime](https://prime.plane.so) portal.
11
-
2. If you don't already have the license, choose the [paid plan](https://takeoff.prime.plane.tools/licenses/plans) you want to purchase.
12
-
3. Go to [Manage licenses](https://takeoff.prime.plane.tools/licenses). Copy the value of **Passkey**on the license you want to activate.
11
+
2. If you haven't purchased the license already, choose the [paid plan](https://prime.plane.so/licenses/plans) you want.
12
+
3. Go to [Manage licenses](https://prime.plane.so/licenses). Copy the value of the **Passkey**for the license you want to activate.
Copy file name to clipboardExpand all lines: self-hosting/methods/docker-compose.mdx
+15-13Lines changed: 15 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ title: Docker
5
5
This guide shows you the steps to deploy a self-hosted instance of Plane using Docker.
6
6
7
7
## Enterprise edition
8
-
To install the Enterprise edition (Plane One and Plane Pro), follow the steps below:
8
+
This section shows you how to install the Enterprise edition (Plane One and Plane Pro). If you want to install the Community edition, see [Community edition](#community-edition).
9
9
10
10
### Prerequisites
11
11
@@ -33,16 +33,18 @@ To install the Enterprise edition (Plane One and Plane Pro), follow the steps be
33
33
7. If you want to activate the license for a paid plan, see [Activate License](/self-hosting/activate-license).
34
34
35
35
## Community edition
36
-
To install the Community edition, follow the steps below:
36
+
To install the free Community edition, follow the steps below:
37
37
38
38
### Prerequisites
39
39
40
40
- Docker installed and running. Choose one of the following options:
41
-
-**Option 1**: Create an EC2 machine on AWS. It must of minimum **t3.medium/t3a.medium**. Run the below command to install docker engine.
- OS with bash scripting enabled (Ubuntu, Linux AMI, macos). Windows systems need to have [gitbash](https://git-scm.com/download/win).
47
49
- User context used must have access to docker services. In most cases, use `sudo su` to switch as root user.
48
50
- Use the terminal (or gitbash) window to run all the future steps.
@@ -79,7 +81,7 @@ To install the Enterprise edition (Plane One and Plane Pro), follow the steps be
79
81
```bash
80
82
./setup.sh
81
83
```
82
-
This will prompt you with the below options.
84
+
This will prompt you with the below options.
83
85
```list
84
86
Select a Action you want to perform:
85
87
1) Install (arm64)
@@ -93,7 +95,7 @@ To install the Enterprise edition (Plane One and Plane Pro), follow the steps be
93
95
Action [2]: 1
94
96
```
95
97
6. Enter `1` as input.
96
-
This will create a folder `plane-app` or `plane-app-preview` (in case of preview deployment) and will download the `docker-compose.yaml` and `.env` files.
98
+
This will create a folder `plane-app` or `plane-app-preview` (in case of preview deployment) and will download the `docker-compose.yaml` and `plane.env` files.
97
99
7. Enter `8` to exit.
98
100
8. Set up the environment variables. You can use any text editor to edit this file. Below are the most importants keys you must refer to:
99
101
-`NGINX_PORT`: This is set to `80` by default. Make sure the port you choose to use is not preoccupied. For example, `NGINX_PORT=8080`
@@ -103,18 +105,18 @@ To install the Enterprise edition (Plane One and Plane Pro), follow the steps be
This is the confirmation that all images were downloaded and the services are up and running.
112
114
113
-
You have successfully self-hosted the `Plane` instance. Access the application by going to IP or domain you have configured it on. For example, `https://plane.example.com:8080` or `http://[IP-ADDRESS]:8080`.
115
+
You have successfully self-hosted the Plane instance. Access the application by going to IP or domain you have configured it on. For example, `https://plane.example.com:8080` or `http://[IP-ADDRESS]:8080`.
114
116
115
117
#### Stop server
116
118
117
-
In case you want to make changes to `.env`variables, we recommend that you stop the services before doing that.
119
+
In case you want to make changes to the environment variables in the `plane.env`file, we recommend that you stop the services before doing that.
118
120
119
121
Run the `./setup.sh` command. Enter `3` to stop the services.
120
122
@@ -124,7 +126,7 @@ To install the Enterprise edition (Plane One and Plane Pro), follow the steps be
124
126
125
127
#### Restart server
126
128
127
-
In case you want to make changes to `.env` variables without stopping the server or noticed some abnormalities in services, you can restart the services.
129
+
In case you want to make changes to `plane.env` variables without stopping the server or noticed some abnormalities in services, you can restart the services.
128
130
129
131
Run the `./setup.sh` command. Enter `4` to restart the services.
Copy file name to clipboardExpand all lines: self-hosting/methods/kubernetes.mdx
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ title: Kubernetes
5
5
This guide shows you the steps to deploy a self-hosted instance of Plane using Kubernetes.
6
6
7
7
## Enterprise edition
8
-
To install Plane, follow the steps below:
8
+
This section shows you how to install the Enterprise edition (Plane One and Plane Pro). If you want to install the Community edition, see [Community edition](#community-edition).
9
9
10
10
### Prerequisites
11
11
@@ -247,6 +247,9 @@ To install Plane, follow the steps below:
247
247
</AccordionGroup>
248
248
249
249
## Community edition
250
+
251
+
To install the free Community edition, follow the steps below:
0 commit comments