HealthTech: WalkyTalky
This is a project for managing online communication with patients in hospitals and their families during lockdowns where they are no longer able to visit in person. If you would like to contribute to this project, please read our wiki to get an overview of what we are doing.
Profiles
The application can be started with three different profiles enabled, development
, production
and view
. These profiles
can be altered in the application.yml
file under spring.profiles.active
. Below you can find an explanation of what each
profile does.
Production
Production profile will start the application with all endpoints enabled and will try to get a connection with a persistent database.
This profile should only be used when a database connection is defined in the application.yml
file.
Development
Development profile will start the application with all endpoints enabled but with a non-persistent in-memory database.
This database will be filled with the information provided in Databaseloader.java
. For more information regarding setting up
the development environment, please refer to our CONTRIBUTING.md
.
View
View profile will start the application without any database or API endpoints enabled. With this profile only the landing page, the contact page, and the About page will be active.