Could someone please help me carry out an online installation on Google Cloud, AWS EC2 instance? There is a Corteza CRM production setup video (https://www.youtube.com/watch?v=9pgQHjMkOMc 468) that discusses this installation but I believe it is outdated. Could anyone please point me to a newer version of this video?
I already have an offline installation running which I have been experimenting with. Could the changes done in the development environment be exported via DB dumps or otherwise into the production server once deployed?
What additional aspects should I consider especially regarding the Online installation that I do not have to do in the offline installation?
These were sample steps I gathered for creating a new Google Cloud instance, installing required software (Nginx, Docker, Docker Compose), setting up Corteza CRM, and configuring SSL keys and domain assignments. Anything other points to be considered?
Step 1: Create a Google Cloud Instance
Sign in to Google Cloud Console:
Go to the Google Cloud Console and sign in with your Google account.
Create a New Compute Engine Instance:
Navigate to Compute Engine > VM instances.
Click on āCreate Instanceā.
Configure the instance with the following details:
Name: Choose a name for your instance.
Region and Zone: Select a region and zone.
Machine type: Choose a suitable machine type (e.g., f1-micro for Free Tier).
Boot disk: Select āUbuntuā as the operating system and choose the version.
Firewall: Allow HTTP (80) and HTTPS (443) traffic.
Networking: Assign a static external IP address.
Step 2: Install Required Software
SSH into the Instance:
Click on the SSH button next to the instance to connect to it.
Install Nginx:
Update the package list: sudo apt update.
Install Nginx: sudo apt install nginx.
Start Nginx: sudo systemctl start nginx.
Verify Nginx is running: Open a web browser and enter your instanceās external IP address.
Install Docker and Docker Compose:
Install Docker: Follow the official Docker installation guide.
Install Docker Compose: Follow the official Docker Compose installation guide.