pulipakaa24 c124e20ccc
All checks were successful
Deploy to Server / deploy (push) Successful in 32s
nullable name fix
2026-04-10 21:50:54 -05:00
2026-03-21 16:30:12 -05:00
2026-04-10 21:50:54 -05:00
2026-03-18 17:10:16 -05:00
2026-04-10 01:38:25 -05:00
2026-04-09 14:28:12 -05:00
2026-04-10 21:50:54 -05:00
2026-04-01 20:12:19 -05:00
2026-04-01 15:46:28 +00:00
2026-04-10 05:25:05 +00:00
2026-04-09 14:20:18 -05:00
2026-03-18 17:10:16 -05:00
2026-04-10 01:24:38 -05:00
2026-04-10 20:16:40 -05:00
2026-04-10 00:38:47 -05:00
2026-04-09 14:28:12 -05:00
2026-03-20 02:59:29 -05:00
2026-03-18 21:51:02 -05:00
2026-04-01 15:46:28 +00:00
2026-04-05 01:32:55 -05:00
2026-04-01 15:46:28 +00:00
2026-03-19 18:50:18 +00:00

LabWise

Lab inventory management service

SITE IS LIVE @ labwise.wahwa.com

PUSHES TO MAIN SHOULD TRIGGER A REBUILD OF THE SITE

How to run on localhost

First-Time Setup:

# 1
npm install

# 2
psql CREATE USER labwise WITH PASSWORD 'labwise_dev_pw';
psql CREATE DATABASE labwise_db OWNER labwise;
psql GRANT ALL PRIVILEGES ON DATABASE labwise_db TO labwise;
psql postgresql://labwise:labwise_dev_pw@localhost:5432/labwise_db -f server/src/db/schema.sql

# 3
cd server && npm install && npm run db:migrate
cd ..

# 4
npm run dev

Every time after the first:

npm install
cd server
npm install
npm run db:migrate
cd ..
npm run dev
Description
No description provided
Readme 3.7 MiB
Languages
TypeScript 97.6%
CSS 2.3%