next level docs - the end-to-end secure, shared productivity platform
setup and start postgres, then create the necessary databases by logging into psql
as a privileged user:
CREATE ROLE development WITH LOGIN ENCRYPTED PASSWORD 'development';
CREATE DATABASE lumium WITH OWNER development;
CREATE DATABASE lumium_test WITH OWNER development;
yarn && yarn build
yarn run dev # to start the development servers
yarn start # to start the production servers
yarn test # run all test suites headless
(cd lumium-api && yarn test) # run backend unit tests
(cd lumium-renderer && wasm-pack test --chrome --headless) # run wasm browser tests
(cd lumium-space && yarn run cypress:test) # run cypress integration tests headless
(cd lumium-space && yarn run cypress:open) # run cypress integration tests headed