Skip to content

Commit

Permalink
doc: README and LICENSE
Browse files Browse the repository at this point in the history
1. add README.md, README.zh_CN.md and LICENSE

LOG: add README and LICENSE
  • Loading branch information
ismdeep committed Oct 26, 2022
1 parent 833f13d commit 6823e62
Show file tree
Hide file tree
Showing 8 changed files with 380 additions and 1,647 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ pnpm-lock.yaml
smartmontools.md
zsh_history.md
/package-lock.json
/yarn.lock
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# SPDX-FileCopyrightText: 2017 - 2022 UnionTech Software Technology Co., Ltd.
#
# SPDX-License-Identifier: LGPL-3.0-or-later

FROM hub.deepin.com/library/node:16 AS builder
WORKDIR /linglong-homepage
COPY . .
RUN yarn --registry=http://registry-npm.sndu.cn/ install && yarn build

FROM hub.deepin.com/library/nginx:latest
COPY --from=builder /linglong-homepage/.vitepress/dist/ /usr/share/nginx/html
COPY --from=builder /linglong-homepage/.vitepress/dist/ /usr/share/nginx/html
304 changes: 304 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

31 changes: 31 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Linglong Home Page

## Dependencies

### Build dependencies

- Node.JS >= 16

## Quick Start

### Install

```bash
yarn install
```

### Start

```bash
yarn dev
```

## Getting involved

We encourage you to report issues and contribute changes

* [Contribution guide for developers](https://github.com/linuxdeepin/developer-center/wiki/Contribution-Guidelines-for-Developers-en). (English)

## License

linglong-homepage is licensed under [LGPL-3.0-or-later](LICENSE).
31 changes: 31 additions & 0 deletions README.zh_CN.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Linglong Home Page

## 依赖

### 编译依赖

- Node.JS >= 16

## 快速开始

### 安装

```bash
yarn install
```

### 开始

```bash
yarn dev
```

## 参与贡献

我们鼓励您报告问题并作出更改

* [开发者代码贡献指南](https://github.com/linuxdeepin/developer-center/wiki/Contribution-Guidelines-for-Developers)

## License

linglong-homepage 遵循协议 [LGPL-3.0-or-later](LICENSE).
4 changes: 4 additions & 0 deletions image-aliyun/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2017 - 2022 UnionTech Software Technology Co., Ltd.
#
# SPDX-License-Identifier: LGPL-3.0-or-later

FROM hub.deepin.com/library/node:16 AS builder
WORKDIR /linglong-homepage
ADD . .
Expand Down
4 changes: 4 additions & 0 deletions image-hongkong/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2017 - 2022 UnionTech Software Technology Co., Ltd.
#
# SPDX-License-Identifier: LGPL-3.0-or-later

FROM hub.deepin.com/library/node:16 AS builder
WORKDIR /linglong-homepage
ADD . .
Expand Down
Loading

0 comments on commit 6823e62

Please sign in to comment.