GitXplorerGitXplorer
l

TianGongLCA

public
5 stars
1 forks
0 issues

Commits

List of commits on branch main.
Unverified
6b90f2ffc95318cb1a2e31f8bdb16b32ba8701ae

feat: icon and color

llinancn committed 2 years ago
Unverified
8548d7668ff861551e224fb2feb02284fc1c2055

feat: update user list

ccytgenkidu committed 2 years ago
Unverified
839a52954bb22d66b851b2a9645385f7f26480fd

feat: update user list

ccytgenkidu committed 2 years ago
Unverified
d4dbbb0ccea4592915705c7c4db14c2041212513

feat: user list

ccytgenkidu committed 2 years ago
Unverified
cd59d04170e586230fa2aa8ace6a4db6e26a770f

fix: user logout

hhyy1987 committed 2 years ago
Unverified
aefdceb2c269a1af74ff5b5a8fbdec41a6966fdd

fix: user login

hhyy1987 committed 2 years ago

README

The README file for this repository.

TianGongLCA Build Docker Publish

This project is initialized with Ant Design Pro. Follow is the quick guide for how to use.

Environment Prepare

Install Node.js 16

apt update
apt upgrade
curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -
apt install -y nodejs
npm install -g yarn

Install node_modules:

yarn

Provided Scripts

Ant Design Pro provides some useful script to help you quick start and build with web project, code style check and test.

Scripts provided in package.json. It's safe to modify or add additional script:

Start project

yarn start

Build project

yarn build

Check code style

yarn lint

You can also use script to auto fix some lint error:

yarn lint:fix

Test code

yarn test

Docker build

After yarn build

docker build --file Dockerfile --tag cystalca .

In case of "JavaScript heap out of memory"

export NODE_OPTIONS="--max-old-space-size=8192"