Skip to main content

base-be

base-be

Project Structure

base-be/
|--src/
| |-- index.ts -> (plugin installation scripts)
|--template -> (nestjs project)

Overview

The base module provides the core setup necessary for a minimal NestJS application. It includes a basic controller and service as examples, and sets the stage for integrating additional modules via an automated process.

Features

  • Core NestJS setup with primary modules.
  • Example controller and service to demonstrate functionality.
  • Automated module integration using GlueStack Backend CLI.

Structure

  • src/: Source directory containing application code.
    • app.controller.ts: A basic controller with a single route.
    • app.service.ts: A service to handle application logic.
    • app.module.ts: The root module orchestrating the application.
  • test/: Directory for unit and end-to-end tests.
  • node_modules/: Directory for installed NPM dependencies.
  • package.json: Configuration file for NPM packages and scripts.
  • README.md: Documentation for the base module.