The Covered website, patient dashboard, and provider dashboard.
Run the following command to build and bundle frontend files:
npm run build
You can tell git not to update these files in case you accidentally commit them by running the following commands:
git update-index --assume-unchanged src/main/resources/application.properties
git update-index --assume-unchanged webpack.config.js
You can undo this change by running the following commands:
git update-index --no-assume-unchanged src/main/resources/application.properties
git update-index --no-assume-unchanged webpack.config.js
You can list all files that are assume-unchanged
with the following command:
git ls-files -v|grep '^h'
Replace spring.datasource.url=${JDBC_DATABASE_URL}
with the following:
# spring.datasource.url=${JDBC_DATABASE_URL}
spring.datasource.url=jdbc:postgresql://ec2-54-146-4-66.compute-1.amazonaws.com:5432/d2ikjtgh8dmhpd?sslmode=require
spring.datasource.username=sdevjztcjkcuxu
spring.datasource.password=f160f3eaa24957c7dba158a61dbc68411b146823846d32a15defe63990ac82ee
Add watch: true,
under mode: 'development',
.