To install all the required dependencies run:
make install
or on windows:
.\setup.ps1 install
To build and run the application in development mode:
make run_dev
or on windows:
.\setup.ps1 run_dev
And for production mode run:
make build run_prod
or on windows:
.\setup.ps1 build run_prod
These commands will run the frontend (and build it for production).
To build into a docker container run:
make docker
On windows:
.\setup.ps1 docker
install
: Installs all the dependencies required by the applicationbuild
: Builds the nextjs applicationrun_dev
: Runs the application in development moderun_prod
: Runs the application in production modedocker
: Builds and runs the docker container