The monorepo that holds everything...
Get the repository on your local machine. Takes a minute.
git clone https://github.com/konfig-dev/konfig
cd konfig
This repository has submodules so pull all of them. Also take a few minutes.
git submodule update --init --recursive --remote --merge
- Run Postgres as a background process
- Setup environment variables
Paste this into your ~/.zshrc
or ~/.bashrc
if [ -f $HOME/.envvars ]; then
. $HOME/.envvars
else
print "404: ~/.envvars not found."
fi
Then create ~/.envvars
with values from Dylan.
- Make sure
node_modules
is initiated inkonfig-dash
cd generator/konfig-dash
yarn # takes some time
- Start the server with
yarn dev
# inside generator/konfig-dash
yarn dev