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: _includes/parse-server/database.md
+15-8Lines changed: 15 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -10,8 +10,8 @@ If you have not used MongoDB before, we highly recommend familiarizing yourself
10
10
11
11
The Mongo requirements for Parse Server are:
12
12
13
-
* MongoDB version 3.6
14
-
* An SSL connection is recommended (but not required).
13
+
* MongoDB version 4.0 or newer
14
+
* An SSL connection is recommended (but not required)
15
15
16
16
If this is your first time setting up a MongoDB instance, we recommend a Database-as-a-Service (DBaaS) like [MongoDB Atlas](https://www.mongodb.com/cloud/atlas) or [ObjectRocket](https://objectrocket.com/) which provide fully managed MongoDB instances and can help you scale as needed.
17
17
@@ -23,8 +23,15 @@ In order to allow for better scaling of your data layer, it is possible to direc
23
23
24
24
The Postgres requirements for Parse Server are:
25
25
26
-
* Postgres version 9.5
27
-
* PostGIS extensions 2.3
26
+
* PostgreSQL 11
27
+
* PostGIS 3.0, 3.1 or 3.2
28
+
29
+
or
30
+
31
+
* PostgreSQL 12 or newer
32
+
* PostGIS 3.2
33
+
34
+
[PostGIS](https://postgis.net) required if you plan to use geographic or location features.
28
35
29
36
The postgres database adapter will be automatically loaded when you pass a valid postgres URL, for example: `postgres://localhost:5432`. The available configuration options through the URL are:
30
37
@@ -44,8 +51,8 @@ Details about the configuration options can be found on [pg-promise](https://git
44
51
* You will need to configure a [file adapter](#configuring-file-adapters) in order to store files.
45
52
* Join tables are resolved in memory, there is no performance improvements using Postgres over MongoDB for relations or pointers.
46
53
* Mutating the schema implies running ALTER TABLE, therefore we recommend you setup your schema when your tables are not full.
47
-
* The postgres URL for 4.2.0 and below only supports the following configuration options:
54
+
* The postgres URL for Parse 4.2.0 and below only supports the following configuration options:
1. Log into your AWS account or create a new one [AWS Account](https://aws.amazon.com/premiumsupport/knowledge-center/create-and-activate-aws-account/)
6
+
2. Go to AWS EC2 Dashboard
7
+
3. Launch Instances
8
+
4. On **Application and OS Images (Amazon Machine Image)** search for `Parse`
9
+
5. Select **Parse Server packaged by Bitnami**
10
+
6. Click `Continue`
11
+
7. On **Instance Type** select `t2.micro` (is ok for testing and small projects which is Free tier eligible)
12
+
8. Create or select an existing `key pair`. (If you create a new one click `Download Key Pair`)
13
+
9. Click `Launch Instance`
14
+
10. On **EC2 Dashboard** select the new created instance and click `Connect`
15
+
11. Click `SSH Client` and follow the instructions
16
+
17
+
Login into the ec2 instance we perform the following commands:
18
+
19
+
```bash
20
+
cd stack/parse
21
+
```
22
+
```bash
23
+
cat config.json
24
+
```
25
+
26
+
That will show Parse configuration details, save those details for later.
0 commit comments