mrapids 0.1.7

Your OpenAPI, but executable
Documentation
# Spec Version: OpenAPI 3.0.3
# Source: https://raw.githubusercontent.com/github/rest-api-description/main/descriptions/api.github.com/api.github.com.json
# MicroRapid Project Configuration
name: my-rest-api
version: 1.0.0
type: rest

# Where things are
paths:
  specs: ./specs
  tests: ./tests
  scripts: ./scripts
  config: ./config

# Default spec to use
default_spec: ./specs/api.yaml

# Environments
environments:
  local:
    url: https://raw.githubusercontent.com
    config: ./config/.env.local
  staging:
    url: https://raw.githubusercontent.com
    config: ./config/.env.staging
  production:
    url: https://raw.githubusercontent.com
    config: ./config/.env.production

# Generation preferences
generate:
  output: ./scripts
  languages: [typescript, python]
  
# Testing preferences  
test:
  framework: jest
  pattern: "**/*.test.js"