Skip to content

Latest commit

 

History

History
77 lines (57 loc) · 1.19 KB

README.md

File metadata and controls

77 lines (57 loc) · 1.19 KB

Radiant Portal

Go Report Card License

Radiant Data Platform

Backend

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

MakeFile

Install all dependencies

make install

Run build make command with tests

make all

Build the application

make build

Run the application

make run

Create DB container

make docker-run

Shutdown DB Container

make docker-down

DB Integrations Test:

make itest

Live reload the application:

make watch

Run the test suite:

make test

Generate OpenAPI v3.1 documentation:

make doc

Clean up binary from the last build:

make clean

Frontend

Generate the CLI

```bash 

openapi-generator-cli generate -i ./backend/docs/swagger.yaml -g typescript-axios -o ./frontend/api

```