https://github.com/humanscape/humin-client
https://github.com/humanscape/humin-client
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/humanscape/humin-client
- Owner: humanscape
- Created: 2021-05-04T03:58:11.000Z (about 4 years ago)
- Default Branch: develop
- Last Pushed: 2022-04-11T12:23:35.000Z (about 3 years ago)
- Last Synced: 2025-01-19T09:43:02.926Z (5 months ago)
- Language: JavaScript
- Size: 1.46 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Humin Client
## 서버 배포
해당 가이드는 Centos8버전을 기준으로 제작되었습니다.
1. nodejs 설치
```
$ dnf install @nodejs
```2. import yarn repo
```
$ curl --silent --location https://dl.yarnpkg.com/rpm/yarn.repo | sudo tee /etc/yum.repos.d/yarn.repo
$ rpm --import https://dl.yarnpkg.com/rpm/pubkey.gpg
```3. install yarn
```
$ dnf install yarn
```4. repo clone
```
$ git clone https://github.com/humanscape/humin-client.git
```5. 라이브러리 설치
```
$ yarn install
```6. build
```
$ yarn build
```메모리 관련 오류 시 로컬에서 빌드 해 업로드 진행
7. nginx에 적용
```
$ cp -R build/* /usr/share/nginx/html/
```