can I use json-server for heroku - heroku

I wanted to use my json-server for my heroku application and can you tell me if this is posible and if it is can you tell me how should I deploy my json-server in my heroku application

Yes you can. There's a guide by jesperorb here: https://github.com/jesperorb/json-server-heroku
You can clone that repo and use the package/server.json files or combine them with your current set-up. Might take some fiddling to get it working.
In my experience so far, it is working great to read from, but I have had some problems when POSTing to it. Hope that helps.

Related

Where is the link of Parse data browser in parse.com website?

Simply to say, i can not find the Parse Data Browser and really don't know what is it. is it a link of parse site or a software or ... ?
I've tried google for that and a couple of youtube videos about that but i think anybody knows what it is and how to find it except me.
Parse.com is down now, you can see this but you can have your own parse server because parse is open source
Install your parse-server and set-up your parse-dashboard
All documentation is available here
If you want to start quickly you can host your parse-server on Heroku or use back4app
If you are looking for an alternative solution you can use Firebase
If you're running your own parse-server, you just have to add the parse-dashboard module. It's pretty easy to set up. https://github.com/parse-community/parse-dashboard#local-installation
You can mount it right on the same app your parse-server is hosted from, or keep it separate and just run it locally.

where can I find the pushed code in Heroku

I have pushed a project to Heroku but I cant figure out how can I see the pushed code there on Heroku? Is that possible?
I appreciate any help.
I guess you have to connect your app to github to achieve this.

Setting up codeship to deploy bitbucket repository to vidahost cloud hosting

I have a private bitbucket php project repository, codeship account and a vidahost cloud hosting. How to implement continuous integration and deployment? What is the workflow to achieve this? I did googling but could not find complete tutorial.
Ahoy Dipendra,
Marko from the Codeship crew here. Could you send me an in app message with a link to your project, so I can take a look at your current setup and help get you started?
As for deploying to Vidahost, you have multiple options. You could use a tool like Capistrano (or Mina, or something similar in your preferred programming language) or you could use SCP or FTP directly to copy your files. For the latter option, please see our documentation at https://codeship.com/documentation/continuous-deployment/deployment-with-ftp-sftp-scp/. (You'll find documentation on Capistrano and a bunch of other deployment options via this link as well.)
I'll update this answer with more specific details, once I know more about your setup!
Cheers,
Marko

Geoserver and PostGIS in Heroku?

i'm looking for information if i can install geoserver in Heroku, i found that heroku supports PostGIS, but don't found any information about Geoserver in heroku. Any one installed Geoserver in heroku, or where i have to install geoserver.
Thanks all. Greats.
I've written a script that makes the task a bit easier, the readme explains how it works. You can run the script or follow it's steps manually.
http://github.com/w8r/openshift-geoserver/
Ok after a lot of search i figured out that is a little complicated to upload Geoserver to heroku. Then i found that some people upload Geoserver to Openshift. I found this tutorials that explain perfectly how to do that.
The first link it's from openshift user and the second link it's the same but in spanish:
https://www.openshift.com/blogs/build-your-own-google-maps-and-more-with-geoserver-on-openshift#comment-39747
https://groups.google.com/forum/#!topic/geoserver-es/DnEhpL_DPYs

Scheduling/scripting with Play Framework (or non-rails project) in Heroku

Well, my head is spinning a bit here. I started with what i thought would be a simple task, to take regular db dumps on heroku and push them to a personal S3 account for backup.
I am not sure the best a approach to do this. Accessing S3 within Java is crystal clear, getting the db dump from heroku is clear as mud right now...
Disclaimer: i don't know Ruby, and i don't really want to learn Ruby if i don't have to, i really want to use Java (that is why i chose play) and i want to have it hosted, that is why i chose Heroku :-)
So, I could use the heroku Scheduler, but i am not understanding what scripts are being executed here - is it all scripts in /bin? What kind of scripts are these, are they ruby scripts? How do i add them as 'tasks' when they aren't rake tasks?
Can I use the pgbackups via URL somehow? It looks like the rake examples do pg_dump instead, write to a tmp file and then move it around from there. I'm pretty unclear how to access the heroku databased stuff from a script, the examples i have seen so far are in rake, so any insight there would be helpful...
Or coming at it from inside my java app, what is the status of the Heroku java API? If there is a way to get to the heroku runtime from my java, or somehow use the heroku.jar?
It would great to get some overall guidance and best practices in this area - thanks!!!
From the google group i found this tidbit:
http://groups.google.com/group/heroku/browse_thread/thread/7fe984c3d2d01f21/9474f31138636332?lnk=gst&q=scheduler+#9474f31138636332
"Sorry for the delayed response. We updated the docs to mention running Procfile entries via heroku run:
http://devcenter.heroku.com/articles/oneoff-admin-ps
Anything that works via heroku run works via Heroku Scheduler. Just put the name of the process type as the 'task" in Scheduler. No special syntax required. And you can even pass it arguments. "
From this and James Ward's last example above i am considering this answered.

Resources