A service built in Typescript
, in charge of:
- Exposing API for sensor manager web service
- Managing and controlling virtual sensor modules which run on HPC computers.
- Managing information of users who access HPC systems
Visit our documentation for more details.
docker
v20.10.22docker-compose
v1.29.2node
v18.13.0npm
8.19.3
yarn bootstrap
: Set up developmentyarn start
: Start application in dev modeyarn db:reset
: Reset database and run seedyarn db:reset:prod
: Reset database in production and run seedyarn db:studio
: Inspect database and host as a web UIyarn clean:git
: Clean local branches which were merged on remote
📦src
┣ 📂configs # Contain environment variables & app configurations
┣ 📂constants # Constants and enums go here
┣ 📂handlers # Handlers, which are responsible for handling core business logic
┣ 📂plugins # Plugin, in charge of organizing api path & registering middleware
┣ 📂dtos # Schema for input (from requests) & output (from responses)
┃ ┣ 📂in
┃ ┗ 📂out
┣ 📂types # Types
┣ 📜prisma.ts # Prisma instance (for connect & query database)
┣ 📜utils.ts # Helping classes and functions
┗ 📜index.ts # Program entry
sudo sysctl -w vm.max_map_count=262144
We use eslint
to find and fix problem in code, such as:
- Unused variables
- Use
var
declaration - Loosely comparation using
==
- ...
You can run this command to test eslint script:
yarn lint
To maintain only one style coding across members, we use prettier
. Try:
yarn format
You don't need to run these scripts regularly or before commiting code. They are run automatically before git commit
command by setting as a precommit script. In some circumstances, precommit script is not enabled by default, just type two commands below to fix it:
chmod ug+x .husky/*
chmod ug+x .git/hooks/*
For a tip, two plugins above could be installed in VSCode
as extensions.
............
┣ 📂controllers
┃ ┗ 📜user.ctrler.ts
┣ 📂routes
┃ ┗ 📜user.route.ts
┣ 📂schemas
┃ ┣ 📂in
┃ ┃ ┣ 📜ids.schema.ts
┃ ┃ ┣ 📜user.schema.ts
┃ ┃ ┗ 📜index.ts
............
Imagine you are in user.ctrler.ts
and want to import ASchema
from ids.schema.ts
. The code can be like this:
import { ASchema } from '../schemas/in/ids.schema.ts'
The more nested folders, the more bad looking importation. It is waste time to guess how many ..
should be put in relative path.
The solution is barrelsby
and path alias. With configurations in .barrelsby.json
, barrelsby can import your entire code base in a specific folder, and re-export them in index.ts
file.
Try this:
yarn barrels
To avoid using many ..
in relative path, config path alias in tsconfig.json
. See the guideline here.
- For every updates, DO NOT push directly to
master
branch. Create a new branch, commit, publish branch and create a pull request (PR) instead. - A branch should have prefix
features/
for a feature update, prefixhotfixes/
for a hotfix,improvs/
for an improvement ... - A PR should be small enough to review. To split a large PR, use stacked PRs.