- This repo uses PostgreSQL as Database server
- Follow these guide for simple database setup, or look into this cheatsheet for more info
- Download and install postgresql from https://www.postgresql.org/download/
- Connect to PostgreSQL server:
psql -U <username>;
- Create database:
create database <tablename>;
- Create table:
\c <tablename> # connect to database
create table waterlevel;
- Check if table exists:
\dt