A Parse Server setup for Chisel — the open source API-first, headless CMS. It based on Parse Server.
Setting up a hosted Parse Server instance is easy with Heroku.
Click the button below and follow these these steps...
If you want to setup Parse Server on Heroku the long way, follow these steps
Should you want to run your Parse Server instance locally, you can...
Clone this repository locally.
git clone <repo url>
cd <project name>
You should install MongoDB (if you haven't it yet):
brew install mongodb
Before running server, you should start MongoDB daemon:
mongod --dbpath <path to data directory>
Install Dependencies
npm install
Next, run server:
npm start
Parse Server will be running on http://localhost:1337/parse
You can setup configuration in config.json
file. Also some parameters can be passed by process.env
.
In config.json
file, in parseConfig
object you can pass any parameters of original Parse Server, so checkout its docs.
Main parameters with process.env
aliases:
Parameter | config.json | process.env |
---|---|---|
Parse server port | port | PORT |
Parse server URL | URLserver | SERVER_URL |
Database URI | URLdb | DATABASE_URI, MONGODB_URI |
Chisel site URL | URLsite | SITE_URL |
Parse application ID | appId | APP_ID |
Parse master key | masterKey | MASTER_KEY |
In emailAdapter
there are settings for email adapter. To using email features (users' verification) you should replace fromAddress
, domain
and apiKey
parameters to yours (or even change the adapter if you don't use Mailgun).
Also you can configure integrated Parse Dashboard (in extraConfig
object in config.js
):
Parameter | config.json | process.env |
---|---|---|
Dashboard enabled | dashboardActivated | DASHBOARD_ACTIVATED |
Email for dashboard | userEmail | USER_EMAIL |
Password for dashboard | userPassword | USER_PASSWORD |