<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>parse Archives | Clever Cloud</title>
	<atom:link href="https://www.clever.cloud/blog/tag/parse/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.clever.cloud/blog/tag/parse/</link>
	<description>From Code to Product</description>
	<lastBuildDate>Thu, 27 Nov 2025 14:50:09 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://cdn.clever-cloud.com/uploads/2023/03/cropped-cropped-favicon-32x32.png</url>
	<title>parse Archives | Clever Cloud</title>
	<link>https://www.clever.cloud/blog/tag/parse/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Setup your Private Parse Server in Production</title>
		<link>https://www.clever.cloud/blog/features/2016/02/02/setup-your-private-parse-server-in-production/</link>
		
		<dc:creator><![CDATA[Arnaud Lefebvre]]></dc:creator>
		<pubDate>Tue, 02 Feb 2016 15:32:00 +0000</pubDate>
				<category><![CDATA[Features]]></category>
		<category><![CDATA[mongodb]]></category>
		<category><![CDATA[Nodejs]]></category>
		<category><![CDATA[parse]]></category>
		<guid isPermaLink="false">https://www2.cleverapps.io/wp/blog/technology/2016/02/02/setup-your-private-parse-server-in-production/</guid>

					<description><![CDATA[<p><img width="1400" height="540" src="https://cdn.clever-cloud.com/uploads/2021/08/parse-1.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="parse 1" decoding="async" fetchpriority="high" srcset="https://cdn.clever-cloud.com/uploads/2021/08/parse-1.jpg 1400w, https://cdn.clever-cloud.com/uploads/2021/08/parse-1-300x116.jpg 300w, https://cdn.clever-cloud.com/uploads/2021/08/parse-1-1024x395.jpg 1024w, https://cdn.clever-cloud.com/uploads/2021/08/parse-1-768x296.jpg 768w, https://cdn.clever-cloud.com/uploads/2021/08/parse-1-1368x528.jpg 1368w" sizes="(max-width: 1400px) 100vw, 1400px" /></p><a href="https://parse.com">Parse</a> is a BaaS (Backend as a Service) for mobile applications. They provide a suite of cloud services for developers that are tightly coupled with SDKs for all the major client platforms.

Unfortunately, they are closing their services to new subscriptions and definitely on January 28, 2017. While this is bad news, they open-sourced their <a href="https://github.com/ParsePlatform/parse-server">backend</a> so that the community can continue the project.

<span id="more-2864"></span>

If you are already familiar with Parse, you will be happy to learn that the backend is written in Node.js and uses MongoDB as a database which are both easy to deploy on Clever Cloud.
<h2 id="parse-server">Parse Server</h2>
They published an example of a basic application using their backend <a href="https://github.com/ParsePlatform/parse-server-example">on Github</a>.
<h2 id="deploy-on-clever-cloud">Deploy on Clever Cloud</h2>
<ol>
 	<li>First, you need to clone this repository (or use an existing one) and modify the Parse Server instanciation:
<pre><code class="language-javascript">var api = new ParseServer({
  databaseURI: process.env.MONGODB_ADDON_URI, // Use the MongoDB URI
  cloud: process.env.CLOUD_CODE_MAIN || __dirname + '/cloud/main.js',
  appId: process.env.PARSE_APPID, // Use environment variable to set the APP_ID
  masterKey: process.env.PARSE_MASTERKEY // Use environment variable to set the PARSE_MASTERKEY
});
</code></pre>
</li>
 	<li>Open the <a href="https://console.clever-cloud.com">Clever Cloud Console</a>, create an account if you don't have one yet</li>
 	<li>Create a <a href="https://www.clever.cloud/developers/api/howto/">Node.js application and a MongoDB addon</a></li>
 	<li>Add these two <a href="https://www.clever.cloud/developers/doc/administrate/">environment variables</a>: <code>PARSE_APPID: &lt;parseAppID&gt;</code>, <code>PARSE_MASTERKEY: &lt;parseMasterKey&gt;</code></li>
 	<li>Follow the instructions about adding the remote to your local git repository</li>
 	<li>Deploy it: <code>git push clever master</code> and head to your application's logs</li>
</ol>
From there you can setup a custom domain name and start using it as you would on Parse!

Happy mobile development!]]></description>
										<content:encoded><![CDATA[<p><img width="1400" height="540" src="https://cdn.clever-cloud.com/uploads/2021/08/parse-1.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="parse 1" decoding="async" srcset="https://cdn.clever-cloud.com/uploads/2021/08/parse-1.jpg 1400w, https://cdn.clever-cloud.com/uploads/2021/08/parse-1-300x116.jpg 300w, https://cdn.clever-cloud.com/uploads/2021/08/parse-1-1024x395.jpg 1024w, https://cdn.clever-cloud.com/uploads/2021/08/parse-1-768x296.jpg 768w, https://cdn.clever-cloud.com/uploads/2021/08/parse-1-1368x528.jpg 1368w" sizes="(max-width: 1400px) 100vw, 1400px" /></p><a href="https://parse.com">Parse</a> is a BaaS (Backend as a Service) for mobile applications. They provide a suite of cloud services for developers that are tightly coupled with SDKs for all the major client platforms.

Unfortunately, they are closing their services to new subscriptions and definitely on January 28, 2017. While this is bad news, they open-sourced their <a href="https://github.com/ParsePlatform/parse-server">backend</a> so that the community can continue the project.

<span id="more-2864"></span>

If you are already familiar with Parse, you will be happy to learn that the backend is written in Node.js and uses MongoDB as a database which are both easy to deploy on Clever Cloud.
<h2 id="parse-server">Parse Server</h2>
They published an example of a basic application using their backend <a href="https://github.com/ParsePlatform/parse-server-example">on Github</a>.
<h2 id="deploy-on-clever-cloud">Deploy on Clever Cloud</h2>
<ol>
 	<li>First, you need to clone this repository (or use an existing one) and modify the Parse Server instanciation:
<pre><code class="language-javascript">var api = new ParseServer({
  databaseURI: process.env.MONGODB_ADDON_URI, // Use the MongoDB URI
  cloud: process.env.CLOUD_CODE_MAIN || __dirname + '/cloud/main.js',
  appId: process.env.PARSE_APPID, // Use environment variable to set the APP_ID
  masterKey: process.env.PARSE_MASTERKEY // Use environment variable to set the PARSE_MASTERKEY
});
</code></pre>
</li>
 	<li>Open the <a href="https://console.clever-cloud.com">Clever Cloud Console</a>, create an account if you don't have one yet</li>
 	<li>Create a <a href="https://www.clever.cloud/developers/api/howto/">Node.js application and a MongoDB addon</a></li>
 	<li>Add these two <a href="https://www.clever.cloud/developers/doc/administrate/">environment variables</a>: <code>PARSE_APPID: &lt;parseAppID&gt;</code>, <code>PARSE_MASTERKEY: &lt;parseMasterKey&gt;</code></li>
 	<li>Follow the instructions about adding the remote to your local git repository</li>
 	<li>Deploy it: <code>git push clever master</code> and head to your application's logs</li>
</ol>
From there you can setup a custom domain name and start using it as you would on Parse!

Happy mobile development!]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
