GitXplorerGitXplorer
l

TianGongLCA

public
5 stars
1 forks
0 issues

Commits

List of commits on branch main.
Unverified
02e6660e0972efdc613d127990687f2bc5645c36

fix: user login

hhyy1987 committed 2 years ago
Unverified
f738f2b76965563f94fed1135779e93d142638c0

fix: login

ccytgenkidu committed 2 years ago
Unverified
c47cf0bfadccbee88c6b72e45d36598239035864

feat: v0.0.8

llinancn committed 2 years ago
Unverified
3666481692c04f9f41486de0a974bb40e50bbf50

fix: rename tiangonglca

hhyy1987 committed 2 years ago
Unverified
a5d08495e512c91a391739eb01ff1e95dc47d3cb

fix: login simple

ccytgenkidu committed 2 years ago
Unverified
5e057a591e5e4cf6a8531ded524c4fcaaa178988

fix: delete electron message

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"