Skip to content

Commit

Permalink
base
Browse files Browse the repository at this point in the history
  • Loading branch information
hewkawar committed Jun 7, 2024
1 parent 6e5f257 commit d00b318
Show file tree
Hide file tree
Showing 9 changed files with 165 additions and 0 deletions.
59 changes: 59 additions & 0 deletions .github/workflows/mdbook.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# Sample workflow for building and deploying a mdBook site to GitHub Pages
#
# To get started with mdBook see: https://rust-lang.github.io/mdBook/index.html
#
name: Deploy mdBook site to Pages

on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
paths:
- 'docs/**'

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:
# Build job
build:
runs-on: ubuntu-latest
env:
MDBOOK_VERSION: 0.4.36
steps:
- uses: actions/checkout@v4
- name: Install mdBook
run: |
curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf -y | sh
rustup update
cargo install --version ${MDBOOK_VERSION} mdbook
- name: Setup Pages
id: pages
uses: actions/configure-pages@v5
- name: Build with mdBook
run: mdbook build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./book

# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
12 changes: 12 additions & 0 deletions book.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[book]
authors = ["HStudio"]
language = "en"
multilingual = false
src = "docs"
title = "HStudio Document"

[output.html]
smart-punctuation = true
mathjax-support = true
git-repository-url = "https://github.com/HStudioDiscordBot/Document"
edit-url-template = "https://github.com/HStudioDiscordBot/Document/edit/main/{path}"
8 changes: 8 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Introduction
**Green Tea** is useful bot in Discord

# Invite
- **[Invite Bots](https://hstudio.hewkawar.xyz/invite)**

# License
The Green Tea Bot and documentation are release under [MIT License](https://github.com/HStudioDiscordBot/Document/blob/main/LICENSE)
15 changes: 15 additions & 0 deletions docs/SUMMARY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Summary

[Home Page](./README.md)

# ไทย
- [ข้อกำหนดในการให้บริการ](./th/terms-of-service.md)
- [นโยบายความเป็นส่วนตัว](./th/privacy-policy.md)

# English
- [Terms Of Service](./eng/terms-of-service.md)
- [Privacy Policy](./eng/privacy-policy.md)

-----------

[Contributors](./misc/contributors.md)
19 changes: 19 additions & 0 deletions docs/eng/privacy-policy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Privacy Policy

This applies to those who use "HStudio" or "Any Discord Bots From HewkawDiscordBotProject" and agree to have "HewkawDiscordBotProject" collecting the following data.

- The number of people using the bot.

- The number of servers the bot is in.

- Real-time data of the number of people who use it at that current time.

- User ID and Server ID.

- The number of commands has been issued.

## We will not collect the following data.

- All messages.

- All data besides what has been mentioned above.
15 changes: 15 additions & 0 deletions docs/eng/terms-of-service.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Terms Of Service

This TOS applies to those who use "HStudio" or "Any Discord Bots From HewkawDiscordBotProject" and agree to "HewkawDiscordBotProject" to these TOS.

- All HDBP's bots do not guarantee to be online 99.99% all the time.

- All HDBP's bots can stop providing service at any time without prior notice.

- All HDBP's bots can be turned offline at any time without prior notice for maintenance.

- All HDBP's bots do not guarantee the safety of whose servers using the bot.

- We can deny service of HDBP's bots to anyone, anytime without prior notice.

- All TOS can be changed without prior notice.
3 changes: 3 additions & 0 deletions docs/misc/contributors.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Contributors

- [HewkawAr](https://github.com/hewkawar)
19 changes: 19 additions & 0 deletions docs/th/privacy-policy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# นโยบายข้อมูลส่วนตัว

ข้อตกลงนี้ระบุถึงบอทดิสคอร์ด "HStudio" หรือกล่าวได้ว่า "บอทที่อยู่ในเครือ HewkawDiscordBotProject" หากผู้ใดใช้งานบอทในเครือ "HewkawDiscordBotProject" ถือว่ายอมรับการเก็บข้อมูลดังต่อไปนี้

- จำนวนผู้ใช้งานบอท

- ห้องดิสที่บอทอยู่

- จำนวนการใช้งานบอท ณ ขณะนั้น

- ข้อมูลของผู้ใช้งานบอทและข้อมูลดิสที่บอทอยู่แค่ไอดีเท่านั้น

- ข้อมูลการใช้งานคำสั่งเพลง เช่น Platforms ที่เล่นเยอะสุด (เฉพาะบอทเพลง)

## ทางเราจะไม่เก็บข้อมูล

- ข้อความที่ส่งในห้องดิสที่ HStudio สามารถมองเห็นได้

- ข้อมูลผู้ที่ใช้งานบอทและดิสนอกเหนือจากไอดี
15 changes: 15 additions & 0 deletions docs/th/terms-of-service.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# ข้อตกลงการใช้งาน

ข้อตกลงนี้ระบุถึงบอทดิสคอร์ด "HStudio" หรือกล่าวได้ว่า "บอทที่อยู่ในเครือ HewkawDiscordBotProject" หากผู้ใดใช้งานบอทในเครือ "HewkawDiscordBotProject" ถือว่ารับข้อตกลงดังต่อไปนี้

- บอทในเครือ "HDBP" ไม่รับประกันออนไลน์ 99.99

- บอทในเครือ "HDBP" จะปิดให้บริการเมื่อไหร่ก็ได้โดยไม่ต้องแจ้งให้ทราบ

- บอทในเครือ "HDBP" จะปิดเพื่อปรับปรุงเมื่อไหร่ก็ได้

- ทาง "HDBP" ไม่สามารถและมิอาจรับประกันความปลอดภัยของดิสที่ใช้งานบอท ผู้ใช้งานควรศึกษาและมีความรู้ก่อนตัดสินใจใช้งานบอท

- ทาง "HDBP" มีสิทธิ์ที่จะปฏิเสธในการให้ใช้งานบอท HStudio โดยที่ไม่ต้องระบุเหตุผล

- ข้อตกลงที่กล่าวมานั้น สามารถเปลี่ยนแปลงได้ตลอดโดยไม่ต้องแจ้งให้ทราบล่วงหน้า

0 comments on commit d00b318

Please sign in to comment.