cve-database

Go, Node (npm) , Docker

# Run backend import and api

# from project root
docker-compose down 

docker-compose ps

# bring up the database
docker-compose up -d

# import json data in your db
go get ./...

go run cmd/script/main.go 

# after import
go run cmd/api/main.go 

## Build frontend

cd frontend
npm install

## run application in development mode
yarn run dev 
#OR
npm run dev

## compile and bundle the application
## this will compile the bundle in frontend/dist package
yarn build 
## OR 
npm run build

install dbeaver