Nexirift's high-performance reference API server implementing the NPS.
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-09-13 23:22:02 +09:30
src feat: add repositories and schemas 2026-09-13 23:22:02 +09:30
.env.example feat: add environment variables 2026-09-13 22:36:21 +09:30
.gitignore feat: add database and accompanying schema 2026-09-13 22:42:40 +09:30
auth-schema.ts feat: add database and accompanying schema 2026-09-13 22:42:40 +09:30
biome.json add supporting files and biomejs 2026-09-13 22:32:24 +09:30
bun.lock feat: add logger utility 2026-09-13 23:21:09 +09:30
docker-compose.dev.yml add supporting files and biomejs 2026-09-13 22:32:24 +09:30
drizzle.config.ts feat: add database and accompanying schema 2026-09-13 22:42:40 +09:30
LICENSE initial commit 2026-09-13 22:13:43 +09:30
package.json feat: add logger utility 2026-09-13 23:21:09 +09:30
README.md initial commit 2026-09-13 22:13:43 +09:30
tsconfig.json add supporting files and biomejs 2026-09-13 22:32:24 +09:30

Aurora

Nexirift's high-performance reference API server implementing the NPS.

Development

Prerequisites

The following guide assumes you are using Linux (or WSL).

  • Docker & Docker Compose
  • Bun

Getting Started

  1. Clone the repository:

    git clone https://git.codeguilds.org/Nexirift/aurora.git
    
  2. Install dependencies:

    bun i
    
  3. Copy .env.example to .env:

    cp .env.example .env
    
  4. Run Docker compose development:

    docker compose -f docker-compose.dev.yml up -d
    
  5. Start the development server:

    bun dev