Set up a custom Git repository for your commercetools Frontend project.
Prerequisites
To set up a Git repository for your commercetools Frontend project, you need the following:
- The latest version of the CLI installed
- Git installed
- A Studio API key with the
build-upload
scope
Set up a new project
To set up a Git repository for your commercetools Frontend project, follow these steps:
-
Create a directory for your project using the terminal by running the following command:
mkdir PROJECT_NAME
-
Change the working directory to the new directory by running the following command:
cd PROJECT_NAME
-
Initialize the Git repository by running the following command:
git init
-
Scaffold your commercetools Frontend project by running the following command:
frontastic scaffold CUSTOMER_NAME PROJECT_NAME
-
Add and commit your code by running the following commands:
git add . && git commit -m "Initial commit"
-
Create the remote repository using git remote.
You can now push, pull, and fetch to or from your remote repository.
Build your project
Backend extensions
- Run
yarn install
in thepackages/PROJECT_NAME/backend
directory. - Run
yarn build
in thepackages/PROJECT_NAME/backend
directory.
yarn build
command has finished executing, the build artifacts bundle.min.js
and bundle.min.js.map
will be available at this path packages/PROJECT_NAME/backend/build/
.Frontend website
Deploy your project
Deploy backend extensions
-
To protect the Studio API key from being exposed in the shell logs, set the API credentials as environment variables by running the following commands.
export FRONTASTIC_CLI_CLIENT_ID=<API_ID> export FRONTASTIC_CLI_CLIENT_SECRET=<API_KEY>
Replace the following:
API_ID
- String - Required. The ID of the Studio API key.API_KEY
- String - Required. The Studio API key.
-
Run the
upload
command from your project directory.frontastic upload \ --project PROJECT_NAME \ --branch BRANCH \ --revision REVISION \ --nodeJsVersion NODE_JS_VERSION \ --buildSuccessful BUILD_SUCCESSFUL \ --buildTime BUILD_TIME \ --buildDuration BUILD_DURATION \ --buildLog BUILD_LOG \ --deploy SHOULD_DEPLOY \ --extensionBundleFilePath BUNDLE_PATH \ --extensionBundleMapFilePath BUNDLE_MAP_PATH \ --url STUDIO_URL \ /
Replace the following:
-
PROJECT_NAME
- String - Required. The name of your commercetools Frontend project. -
BRANCH
- String - Required. The name of the Git branch used to build the uploaded files. -
REVISION
- String - Required. The long commit hash of the current HEAD used to build the uploaded files.Do not use the short commit hash as this will cause indexing issues in the Studio.
-
NODE_JS_VERSION
- String - Required. The Node.js version for the Extension runner. -
BUILD_SUCCESSFUL
- Boolean - Optional. Defaults tofalse
. Set it totrue
if the build was successful. Otherwise, set it tofalse
. Only successful builds are stored in the Studio. -
BUILD_TIME
- String - Required. The date and time of the build in the RFC3339 format. For example,2023-11-21T08:14:31.830Z
. -
BUILD_DURATION
- Integer - Required. A numeric value for the build duration in seconds. -
BUILD_LOG
- String - Optional. Defaults to an empty string. The CI execution logs. -
BUNDLE_PATH
- String - Required. The path to thebundle.min.js
file. -
BUNDLE_MAP_PATH
- String - Required. The path to thebundle.min.js.map
file. -
SHOULD_DEPLOY
- Boolean - Optional. Defaults tofalse
. Set it totrue
to deploy the build to the staging environment, or set it tofalse
if you only want to upload the build. -
STUDIO_URL
- String - Required. Your Studio URL, in the formatCUSTOMER_ID.frontastic.io
.
You can deploy your commercetools Frontend project to the staging environment:
- When uploading the build, by setting
SHOULD_DEPLOY
totrue
. - Manually from the Studio, by setting
SHOULD_DEPLOY
tofalse
.
-
Deploy frontend
To deploy your frontend, you must connect your Git repository to Netlify. To do so, follow these steps:
-
Set the following values for the build settings.
- Runtime:
Next.js
- Base directory:
packages/PROJECT_NAME/frontend
- Build command:
yarn build
- Publish directory:
packages/PROJECT_NAME/frontend/.next
- Runtime:
-
Set the following values for the environment variables in your Netlify site settings:
NETLIFY_USE_YARN
:true
NEXT_PUBLIC_CLOUDINARY_CLOUD_NAME
:CLOUDINARY_CLOUD_NAME
NEXT_PUBLIC_FRONTASTIC_HOST
:https://PROJECT_NAME-CUSTOMER_NAME.frontastic.io/frontastic
-
Set up website branch deployment and deactivate auto publishing by locking deploys.
Do not keep auto publishing active as this will cause deployment issues in the Studio.