The database follows the SensorThings API (STA) standard data model.
Additionally, other SOS-specific metadata may be considered as an extension.
You can enable or disable database versioning by setting the VERSIONING environment variable in the .env
file.
For more information about the database versioning, refer to the Database Versioning Documentation
You can enable or disable the addition of dummy data by setting DUMMY_DATA environment variable in the .env
file.
You can enable or disable the cleaning by setting CLEAR_DATA environment variable in the .env
file.
For more information about the database dummy data, refer to the Database Dummy Data Documentation
To create a new database connection in DBeaver using PostgreSQL as the driver, use the following settings:
- Host: 127.0.0.1
- Port: 45432
- Database: istsos (controlled by the POSTGRES_DB variable in the
.env
file) - Username: admin (controlled by the POSTGRES_USER variable in the
.env
file) - Password: admin (controlled by the POSTGRES_PASSWORD variable in the
.env
file)