-
Notifications
You must be signed in to change notification settings - Fork 79
Deploy CRMint on Google Cloud Platform from another branch than master
Pierre Dulac edited this page Jan 13, 2023
·
4 revisions
- Go to https://console.cloud.google.com
- Select or create your project
- Click "Cloud Shell" button
You are now ready to copy-paste these commands into the Cloud Shell Terminal (replacing the YOUR_USERNAME
and YOUR_BRANCH
variables with meaningful values):
# Install the command-line.
YOUR_USERNAME="..."
YOUR_BRANCH="..."
source <(curl -Ls https://raw.githubusercontent.com/$YOUR_USERNAME/crmint/$YOUR_BRANCH/scripts/install.sh) $YOUR_BRANCH
# Create a stage definition for your environment.
crmint stages create
# Checks a few things
crmint cloud checklist
# Re-run the setup in case new elements are needed.
crmint cloud setup
# Ensures the database schema is up-to-date.
crmint cloud migrate
# Retrieve the frontend URL when it's ready.
crmint cloud url
Congratulations, you have deployed CRMint from a custom branch!