This is a Giga Blocks Documentation Repo.
- OS: Linux/Unix, Windows with WSL
- Node Version 18.x
- We are using
yarnas a package manager so we must install it as a global dependencies:npm install -g yarn - Command to install dependencies:
yarn install
- We can now run the project in development environment:
yarn start - Above command will start projects in localhost on
Port 3000.
- To run project in production environment:
yarn build - Above command will generate static build into
buildfolder. We can directly run it using:yarn serve - We have
Dockerfilewhich will copy static build files and serve them usingNginx.