Skip to content

Commit 9ad0aec

Browse files
author
NAWS
committed
Apply GitHub Actions.
1 parent 40ae0a5 commit 9ad0aec

18 files changed

+107
-7
lines changed

.github/workflows/deploy.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Deploy GetBlobs Docs to GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
permissions:
9+
contents: write # needed to push to gh-pages branch
10+
11+
jobs:
12+
deploy:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout repository
16+
uses: actions/checkout@v4
17+
18+
- name: Set up Python
19+
uses: actions/setup-python@v5
20+
with:
21+
python-version: '3.x'
22+
23+
- name: Install dependencies
24+
run: |
25+
pip install -r requirements.txt
26+
27+
- name: Fetch and inject token list
28+
run: python scripts/fetch_token_list.py
29+
30+
- name: Deploy to GitHub Pages
31+
run: mkdocs gh-deploy --force --clean
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

docs/index.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# GetBlobs Overview
2+
3+
4+
5+
<p align="center">
6+
<img src=".gitbook/assets/logo_getblobs_naws.svg" alt="GetBlobs Logo" width="240"/>
7+
</p>
8+
9+
10+
GetBlobs is an innovative online platform for creators to upload, share, and trade digital content effortlessly. By leveraging P2P crypto payments, GetBlobs offers a seamless and creator-first approach to monetizing digital assets, eliminating the need for traditional payment processes.
11+
12+
> ### What is a Blob?
13+
>
14+
> "Blob" stands for "Binary Large Object," a term commonly used in computer science to describe large chunks of data like images, audio files, videos, and 3D models.
15+
> At GetBlobs, the concept of "Blob" is expanded to include all forms of creative digital assets, representing the unique ideas and creativity of their creators.
File renamed without changes.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Support Tokens
2+
3+
<!-- TOKEN_LIST_PLACEHOLDER -->

0 commit comments

Comments
 (0)