Skip to content
This repository has been archived by the owner on Dec 19, 2021. It is now read-only.

restyjs-graveyard/config

Repository files navigation

@restyjs/config

Configuration module for resty.js.

import resty from "@restyjs/core";
import { Configuration } from "@restyjs/config";

const app = resty({
  controllers: [],
  providers: [
    // will load .env file. for custom env file pass options param.
    Configuration(),
  ],
});

app.listen(8080);