WordPress on OpenShift online - openshift

I am trying to create a WordPress application in OpenShift Online. I found an online instruction for OpenShift Online V3, but it does not seem to be up to date. Specifically in the section "Deploying WordPress", it advised that in order to create a new WordPress application:
To deploy a fresh WordPress instance, from the web console select
Add to Project. Under Browse Catalog, select PHP. You should be able
to see options for deploying WordPress.
But I could not find "options for deploying WordPress".
Does OpenShift still support WordPress? If it does may someone suggest instructions on how to achieve it?

The steps I took to create a WordPress application on OpenShift Online platform:
Follow the steps in the OpenShift blog to load the WordPress templates into your project.
Creating a WordPress app:
a. Go to the OpenShift Web Console, click "Select from project".
b. In the next screen, select the project to which the WordPress templates were just loaded. Two options will be available.

Related

How to deploy Angular-Flask-MySQL Project on Heroku which Stored in Github repo

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/

Docker-compose wordpress with costum theme + mysql

I need to do docker-compose: 1)wordpress with my theme 2) mysql.
How is this done in practice? And plus one condition, I will fold the .yam file to another person and it should launch in the same way, that is, there was a small problem, I can’t add a topic locally like COPY. / wp-content /
There is an idea to create your own wordpress image with the theme and connect it to docker-compose, but there were several unsuccessful attempts, please share a couple of examples of how to deploy wordpress with the customer’s site.
Have you seen this Quickstart: Compose and WordPress?

Deploy Django project to a website subfolder

I have a website (e.x. www.example.com), and a web server and my goal is to upload a Django project (already completed at my home pc) into a subfolder of my example website. That is, I would like my django project to run at www.example.com/mynewdjango/. The web server runs Apache and MySql. My project uses Mysql too.
Is there a step by step guide to do this?
Thank you!
You can start from:
This step by step Guide
Official Django documentation

How to setup local server for wordpress site with git

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

run drupal site in github.io

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.