Skip to content

oleg-darkdev/ecocide_app

Repository files navigation

The starter is prepared for deployment to Vercel.

Configured to use Typescipt.

Stack

Commands

# clone repository and install packages
git clone https://github.com/oleg-darkdev/;
# start the server
cd backend;

yarn;

yarn dev
# start the front-end & open the app in a new browser tab
cd frontend;

yarn;

yarn dev --open
# create a production version  of front-end app :
cd frontend;

yarn build;
# create a production version  of back-end app :
cd backend;

yarn build;