-
-
Notifications
You must be signed in to change notification settings - Fork 1
Getting Started
Cedric Schwyter edited this page Oct 24, 2022
·
1 revision
git clone https://github.com/d3psi/lumium
Install the following dependencies:
The following dependencies must be installed:
- nodejs
- postgresql
npm install --global yarn
nvm install 16
nvm use 16
Run in ./lumium
directory (repository root directory):
yarn install
sudo service postgresql start
sudo -u postgres psql
CREATE ROLE development WITH LOGIN ENCRYPTED PASSWORD 'development';
CREATE DATABASE lumium WITH OWNER development;
CREATE DATABASE lumium_test WITH OWNER development;
exit
Run in ./lumium
directory
yarn run dev