Skip to content

zuzaluorg/zuzalu

Repository files navigation

🛠 Install

Clone this repository:

git clone https://github.com/zuzaluorg/zuzalu.git

And install the dependencies:

cd web-app && yarn
cd apps/web-app && yarn

📜 Usage

Web app needs its env variables. Copy the .env.example file as .env.local at the apps/web-app folder.

cp .env.example .env.local

And add your environment variables.

Start the web-app

Run the following command to run a local web app from your apps folder:

yarn start:web-app

Code quality and formatting

Run ESLint to analyze the code and catch bugs:

yarn lint

Run Prettier to check formatting rules:

yarn prettier

or to automatically format the code:

yarn prettier:write