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.
- Host: GitHub
- URL: https://github.com/microeinhundert/radonis-example-application
- Owner: microeinhundert
- Created: 2022-11-20T13:17:21.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-07T11:04:15.000Z (about 3 years ago)
- Last Synced: 2025-09-11T07:05:50.707Z (7 months ago)
- Topics: example-application, radonis
- Language: TypeScript
- Homepage:
- Size: 2.23 MB
- Stars: 14
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.