Skip to content
This repository was archived by the owner on Sep 3, 2026. It is now read-only.

Latest commit

 

History

History
63 lines (41 loc) · 1.21 KB

File metadata and controls

63 lines (41 loc) · 1.21 KB

Caution

This repository is deprecated in favor of OAI/events.openapis.org. All content has been moved to a new location.

OLD Documentation

OpenAPI Conference website

Prerequisites

  • Node.js 24+
  • npm or yarn

Quick Start

Install Dependencies

npm install

Run Development Server

npm run dev

The site will be available at http://localhost:3000

The dev server runs three processes concurrently:

  • JS Bundler - Watches and rebuilds JavaScript with esbuild
  • CSS Compiler - Watches and rebuilds Tailwind CSS
  • HTTP Server - Serves the dist/ directory

Build for Production

npm run build

Deployment

The dist/ directory contains everything needed for deployment:

dist/
├── index.html     # Main HTML
├── main.js        # Bundled JavaScript
├── output.css     # Compiled CSS
└── images         # Copied from public/images

Available Scripts

  • npm run dev - Start development server with watch mode
  • npm run build - Build for production
  • npm run preview - Preview production build
  • npm run clean - Remove dist directory