-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
Sulabh Mehta (Dominik) edited this page Nov 8, 2023
·
6 revisions
- node.js (> 18.17.0)
- golang (created with v1.21)
- mongodb
- Insert your
.envfile in/havingMONGODB_URI - Run the server instance for development:
go mod tidy
go run main.goTo build go app, run
go build -o quizbe.pkgTo run the built go app, run
./quizbe.pkg- Insert your
.env.localfile inweb/directory - Install the dependencies:
cd web
npm install- Run the development server:
npm run devTo build the next app, run
npm run buildTo start the built app, run
npm start