···66 just --list
7788# ๏ Build Lustre runtime and start HTTP server
99-dev: compose-up
99+dev: up
1010 just client::build
1111 just server::run
12121313# Run PostgreSQL container
1414[group("db")]
1515-compose-up:
1515+up:
1616 podman-compose -f compose.yml up --detach
17171818# Stop PostgreSQL container
1919[group("db")]
2020-compose-down:
2020+down:
2121 podman-compose -f compose.yml down --volumes
+11
sql/create/tables.sql
···11+create table public.user_account (
22+ id uuid default uuidv7,
33+ full_name text not null,
44+ password_hash text not null,
55+ phone text unique not null,
66+ email text unique not null,
77+ is_active boolean not null default false,
88+ created_at timestamp not null default current_timestamp,
99+ updated_at timestamp not null default current_timestamp,
1010+ primary key (id)
1111+);