Skip to content

Latest commit

 

History

History
29 lines (17 loc) · 1.34 KB

README.md

File metadata and controls

29 lines (17 loc) · 1.34 KB

istSOS4 Database

The database follows the SensorThings API (STA) standard data model.

Additionally, other SOS-specific metadata may be considered as an extension.

Database versioning

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

Database dummy data

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

Connect to database in DBeaver

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)