You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Moltimate has two different Spring profiles: dev, which is activated by default and used for local development, and prod, which is used when the application is deployed to GCP App Engine. Because we want to conditionally load different Maven dependencies for these profiles, we have set up respective Maven profiles for each of these. These are defined in the pom.xml. When using mvn, you can decide which profile is used for the command with the -P flag.
Example: mvn spring-boot:run -Pprod