This guide provides step-by-step instructions to help you configure and deploy the Advancing Controller effectively.
DROP DATABASE advancing;
. Once the database has been dropped, the Liquibase script will automatically re-enable it.SPRING_DATASOURCE_URL
: Environment variable used to configure a data source URL for a Spring application. It typically contains the JDBC driver name, the server name, port number, and database name.SPRING_DATASOURCE_USERNAME
: Environment variable used to set the username for the database connection. This can be used to connect to a database instance.SPRING_DATASOURCE_PASSWORD
: Environment variable used to store the password for the database connection. This can be used to secure access to the database and ensure that only authorized users have access to the data.SPRING_JPA_DATABASE
: Specifies the type of database that the Spring application should connect to (accepted values: oracle
or postgresql
).SPRING_JPA_PROPERTIES_HIBERNATE_DEFAULTSCHEMA
(❗️only for Oracle DBs): Specifies the default schema to use for the database (default value: public
).