An open API service indexing awesome lists of open source software.

https://github.com/microeinhundert/radonis-example-application

The Radonis example application demonstrates how Radonis works and is a great starting point for new projects.
https://github.com/microeinhundert/radonis-example-application

example-application radonis

Last synced: 6 months ago
JSON representation

The Radonis example application demonstrates how Radonis works and is a great starting point for new projects.

Awesome Lists containing this project

README

          

# Radonis Example Application

## Getting Started

Create a `.env` file in the project root. For default environment variables, refer to `.env.example`.

Start the database locally:

```console
docker compose up -d
```

Migrate the database for the first time:

```console
node ace migration:fresh
```

Start the project for development:

```console
npm run dev
```

Build the project for production:

```console
npm run build
```

> Tip: Install the AdonisJS VSCode extension for a better development experience.