How can I edit the application hosted on Heroku online? I need my remote HTML/CSS designer to do some layout fixes on my application hosted on the Heroku. Any help is really appreciated.
Currently, your best bet might be to Cloud9 to share and edit source code. You can deploy directly from Cloud9 to Heroku.
You cannot edit your application hosted on heroku online. If you have hosted your application code elsewhere on Github or Gitorious, it might be possible for your designer to make changes online there and then you can push the code to Heroku
Related
I am currently working on a project that uses Angular as frontend framework, Flask as backend framework and MySQL as database.
Furthermore, the developement of the application is completed and the source code is stored in private Github repo.
My next step is to deploy this project on heroku server. After done some research l found that i have to change the database to Clear DB which is the database available in heroku. As a newbie this is my first web app deployment to heroku server.
Is there any online source where i can refer that can fullfiill my requirement or if somebody has done this approach previousely could please list down the steps so i can follow them. Your help will be highly appreciated.
Thanks and best regards.
I had done a project related to angular and flask. I faced the same issue when it comes to app deployment phase.
I deployed the angular app and the flask app in two separate heroku servers. Using this method it is easy for you to do the furthure developments of the application as well.
Following are some reliable sources you can refer,
Deploy flask app to heroku
https://stackabuse.com/deploying-a-flask-application-to-heroku/
Deploy angular app to heroku
https://www.javaguides.net/2020/11/how-to-deploy-angular-application-to-heroku.html?m=1
After deploy both these frameworks separately you can replace your angular api call from https://localhost:5000/api/ to https://yourbackendserver.herokuapp.com/api/
I want to make a basic website to show some people and was thinking of hosting with heroku as its has been pretty good for other things.
However, I wasn't sure what to put in the procfile to just be able to have a html webpage show at https://appname.heroku.com. I tried googling it but all I was able to find was node.js stuff, and I don't want to have to get into that. All I really need is the command to put in the procfile.
If you have anything to contribute please add it here, and thank you if you already have.
Have in mind if it is a static page, I don't recommend you heroku. Instead upload it to both vercel or github pages because heroku has a limit of deployments and after 30 minutes of inactivity yo get the server sleeping so the next time you open the app, you will late a bit... Moreover, both vercel and github pages have https
By the other hand with vercel you can create an app from a repo, that means that you can to link an app with a repo so each time you make a push, the app in vercel gets deployed automatically (is the method I use)
I am going to upload my website by using hostgator. Is it possible OR IF Yes then please give me the solution.
read this
If you are not in really need for hostgator only, You can use
heroku or AWS (amazon web services) or digital ocean platforms to host your application and their documentations are very easy to understand by reading
try them if yor are interested
here for nodejs on heroku link. they have a tour like guide for you to deploy your app easily just follow their steps and its free for one application
I'm working on a WordPress site via Sourcetree. The previous dev working on this project had set up a local server with Docker, however I have no experience with this.
My question is - how can I connect to localhost to start developing?
Note-
I've downloaded mysql, xampp and wordpress locally
I have experience developing wordpress sites locally (via an FTP such as FileZilla), however I've never done so with git included.
Thanks.
Try to follow these instructions:
https://premium.wpmudev.org/blog/setting-up-xampp/
Probably one thing that you are not doing properly is that your project doesn't sit in xampp/htdocs/myproject as that way you can access it through http://localhost/myproject
I have one Drupal site in RHC Openshift, So i uploaded my site to one GitHub repository , So i interested in making one demo site via GitHub.IO server, So how could I establish this kind site via:
<username>.GitHub.IO/<repository _name>
So i think which it's need to install at least MySQL in my GitHub repository .!!!
So how could I do this work?
Thanks a lot for your attention.
To host sites on Github you need to use Github Pages. Github Pages is not a full-featured web host. It does not allow you to run any server-side code thus it is not possible to run a MySQL server on it.