parse-server-example on heroku "Cannot get /parse" - heroku

Deployed the parse-server-example on heroku using 'Deploy on Heroku' button from github page. Left the default value for PARSE_MOUNT, and updated SERVER_URL config variables.
And going to "https://myapp.herokuapp.com/parse" says "Cannot get /parse" - 404
However, using the curl example to create a GameScore object works fine. Since /parse can't be reachable, the app is not shown in the parse-dashboard (deployed separately on heroku).
Any help is much appreciated.
Thanks,
Raj

Related

View laravel in heroku doesn't run correctly when first time deploy to heroku

im new to laravel. so i just try to deploy app to heroku but seem it dont work correctly
but when i run local at 127.0.0.1:8000 it work fine
i already put Procfile, add Config Vars to heroku but still not work.
i don't know to fix this, please help me. thanks.
full code here if you need
https://github.com/salmanagustian/wedding-digital-invitation

Deploy angular-meteor on server?

I'm using Angular(Ionic)-Meteor method (http://www.angular-meteor.com/) to create my app. It worked local perfectly.
However, when I put it on Paas server like Heroku, OpenShift, I got error with angular like this (from browser console):
Error: [ng:areq] Argument 'InboxCtrl' is not a function, got undefined http://errors.angularjs.org/1.5.3/ng/areq?p0=InboxCtrl&p1=not%20aNaNunction%2C%20got%20undefined
This error show at both server (Heroku and OpenShift)
Has anyone done this before and can help me with deploying my app?
I've already solve my problem.
In case anyone else need it:
https://forums.meteor.com/t/deploy-angular-meteor-on-openshift/25333/2
Thanks.
Close now.

Remotely access Parse dashboard

I managed to configure stand alone Parse server for my Android app using ubuntu server and mongoDB. And now Parse released its open source dashboard for parse server which I am able to setup but getting error in accessing it remotely.
As it says "Parse Dashboard can only be remotely accessed via HTTPS". I have almost no experience of developing web app. I have tried changing http to https in url but it didn't worked!
I have also tried adding username and password for basic auth, but it didn't worked either! Here's link for parse dashboard
https://github.com/ParsePlatform/parse-dashboard
Try starting the dashboard like this:
export PARSE_DASHBOARD_ALLOW_INSECURE_HTTP=1
npm run dashboard
I have the same problem. I set up the parse server through heroku. I tried antsyawn's suggestion, it did not work. The github to parse-dashboard just updated a little more.
Now you should:
npm install -g parse-dashboard
parse-dashboard --appId yourAppId --masterKey yourMasterKey --serverURL "https://example.com/parse" --appName optionalName
They did suggested to add --allowInsecureHTTP=1
Nevertheless, I tried all that as well and its not working. May be you can try this too since you set up your server differently(it might work).
im working with ParseServer And ParseDashboard to Start we cant create confused about two.
For me , more important is ParseDashboard, And yes you can acess Remotely, firstly you need create a hack direct in code to do that.
To run parse dashboard without problems follow this steps.
git clone git#github.com:ParsePlatform/parse-dashboard.git
cd parse-dashboard
npm install
After this! after!...
npm run dashboard
This screen will be showed to you...
When this image is running you can acess by url your serverIp:4040 will show dashboard.
dashboard is running.
The answer from #xiaowoo worked for me. For a visual, I watched this video
Install Parse Server and Parse Dashboard to Digital Ocean
In summary, here is what I ended up running:
parse-dashboard --appId MyApp --masterKey mysupersecretmasterkey --serverURL "https://198.58.10.23/parse" --appName TestApp --allowInsecureHTTP=1
Server response:
The dashboard is now available at http://0.0.0.0:4040/
Browse to your dashboard:
http://198.58.10.23:4040

Heroku No such app for Dropbox based app

I had a app hosted on 'inputbox.herokuapp.com'.
My app was giving error even after successful deployment. So, I deleted the app and recreated the same app.
But now I am getting error message as:
"Heroku | No such app
There is no app configured at that hostname.
Perhaps the app owner has renamed it, or you mistyped the URL."
I looked around for heroku docs but nothing works.
I dont know how to get this fixed. Please help.
Check what apps you currenty have using
heroku apps
It should say something like
=== My Apps
inputbox
If it doesn't, then you know what the problem is. Let's say it has one of those silly generated names, then you can rename it using the following command:
heroku apps:rename inputbox
Happy hacking!

Getting a 404 using App Harbor and BitBucket

I'm new to AppHarbour and I'm trying to deploy my MVC app on a free account.
I keep getting a 404 error.
The app is coming from Bit-bucket and it was deployed successfully.
In my Hostnames section i see the following
so i have added the following to the Hosts file in my machine:
176.34.122.158 camelotfaultmanagement.apphb.com
but i still get a 404 ..
What am i doing wrong ?
And a follow-up question how can i edit one of the files to be able to edit the connection ?string to my DB?
It looks like you may not have any successful builds yet - You have to push to Bitbucket to trigger your first build. You can see a list of builds on the app dashboard: https://appharbor.com/applications/camelotfaultmanagement
To use the built-in .apphb.com domain, you don't have to mess with any DNS setup.

Resources