Skip to content

Latest commit

 

History

History
52 lines (31 loc) · 1.33 KB

README.md

File metadata and controls

52 lines (31 loc) · 1.33 KB

Nishiki Backend

This is the Nishiki's backend repository.

Structure

Directory Name Description
backend Backend code. This directory contains multiple projects.
cdk CDK code.

The backend is deployed on the AWS using AWS CDK.

Backend Directory

Main

The main directory is the main directory literary. That includes domain objects and their use-cases.

backend/main Readme

Contributing

To contribute this project. Please see the CONTRIBUTE.md

Format & Lint code

This project adapts Biome as a formatter. Its config file is biome.json.

CI

When you run the following command, you can check if the cord is following the lint rules.

$ npx @biomejs/[email protected] ci ./backend ./cdk

Format

When you run the following command, the Biome re-writes your code neatly.

$ npx @biomejs/[email protected] format ./backend ./cdk --write

Lint

When you run the following command, the Biome re-writes your code neatly.

$ npx @biomejs/[email protected] lint ./backend ./cdk --apply