Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dtedesco1/travel-blog-web
The web portion of the travel blog parse app.
https://github.com/dtedesco1/travel-blog-web
Last synced: 11 days ago
JSON representation
The web portion of the travel blog parse app.
- Host: GitHub
- URL: https://github.com/dtedesco1/travel-blog-web
- Owner: dtedesco1
- Created: 2013-09-23T13:35:31.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-09-22T05:43:29.000Z (over 11 years ago)
- Last Synced: 2023-03-22T13:28:15.398Z (almost 2 years ago)
- Language: JavaScript
- Homepage:
- Size: 105 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
travel-blog-web
===============Web portion of travel blog parse app
###Configuration###
Parse Cloud Code and Web Apps require a global.json
configuration file. This file has been removed from the
repository for security reasons but it should look
exactly like this````json
{
"applications": {
"Travel Blog": {
"applicationId": "APPLICATION_KEY",
"masterKey": "MASTER_KEY"
},
"_default": {
"link": "Travel Blog"
}
},
"global": {
"parseVersion": "1.2.8"
}
}
````
Where APPLICATION_KEY is the parse project application key and
MASTER_KEY is the parse project master key.Create this file exactly as above, replacing the two keys, and place it
in the parse/config/ directly as 'global.json'.###Installing Parse Command Line Tools###
This project is deployed using parse command line tools, this will probably be enough
````bash
curl -s https://www.parse.com/downloads/cloud_code/installer.sh | sudo /bin/bash
````But you can also [click here for installation instructions](https://www.parse.com/docs/cloud_code_guide#started-installing)
###Deploying###
Inside of the parse directory (important!), run
````bash
parse deploy
````