An in-house ticket management system.
- go: to build and run the server
- npm: to build and run the client
- A Mongo DB account and the credentials to a cluster
Clone the repository.
git clone https://github.com/digitalnest-wit/nestqueueNavigate to nestqueue.
cd nestqueueThis command downloads all the dependent modules for the server. No need to navigate to server.
go -C server mod downloadNavigate to the client directory.
cd clientThis command installs all the dependencies for the client application.
npm installClick on Connect and find your cluster URI. Place this URI in the server environment file server/.env.
MONGO_URI='YOUR_URI_HERE'In the server directory, run this command.
makeIn the client directory, run this command.
make