POC Infrastructure Setup
Prerequisities
Ensure that you have the following:
- Access to Self-Managed Commerce Source and Maven Repository
- A development branch created in your Git Repository
For more details, see the Getting Access to Self-Managed Commerce Source Code section.
Configuring Maven Extension
The extensions
module in Self-Managed Commerce source contains a maven/individual-settings.xml
to use.
Change
EP_REPOSITORY_USER
andEP_REPOSITORY_PASSWORD
to the credentials used for connecting to the public Elastic Path Maven repository.<servers> <server> <id>ep-public</id> <username>EP_REPOSITORY_USER</username> <password>EP_REPOSITORY_PASSWORD</password> </server> <server> <id>ep-cortex</id> <username>EP_REPOSITORY_USER</username> <password>EP_REPOSITORY_PASSWORD</password> </server> <server> <id>ep-commerce-engine</id> <username>EP_REPOSITORY_USER</username> <password>EP_REPOSITORY_PASSWORD</password> </server> <server> <id>ep-accelerators</id> <username>EP_REPOSITORY_USER</username> <password>EP_REPOSITORY_PASSWORD</password> </server> </servers>
Make any changes required for your project environment.
Copy
individual-settings.xml
to${user.home}/.m2
and rename it tosettings.xml
.
Local Developer Environment Setup
Follow the instructions at Setting up your Developer Environment to configure, build, and run Self-Managed Commerce in a command line environment.