Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 13 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
# Bingsan
<p align="center">
<img src="assets/bingsan-logo.png" alt="Bingsan" width="150">
</p>

[![Go Version](https://img.shields.io/badge/Go-1.21+-00ADD8?style=flat&logo=go)](https://golang.org)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](LICENSE)
[![Go Report Card](https://goreportcard.com/badge/github.com/teamPaprika/bingsan)](https://goreportcard.com/report/github.com/teamPaprika/bingsan)
<h1 align="center">Bingsan</h1>

**High-performance Apache Iceberg REST Catalog in Go — 2-3x faster than alternatives**
<p align="center">
<a href="https://golang.org"><img src="https://img.shields.io/badge/Go-1.21+-00ADD8?style=flat&logo=go" alt="Go Version"></a>
<a href="LICENSE"><img src="https://img.shields.io/badge/License-Apache%202.0-blue.svg" alt="License"></a>
<a href="https://goreportcard.com/report/github.com/teamPaprika/bingsan"><img src="https://goreportcard.com/badge/github.com/teamPaprika/bingsan" alt="Go Report Card"></a>
</p>

<p align="center">
<strong>High-performance Apache Iceberg REST Catalog in Go — 2-3x faster than alternatives</strong>
</p>

[한국어](#한국어) | [English](#english)

Expand Down
Binary file added assets/bingsan-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions cmd/iceberg-catalog/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
"os/signal"
"syscall"

"github.com/kimuyb/bingsan/internal/api"
"github.com/kimuyb/bingsan/internal/config"
"github.com/kimuyb/bingsan/internal/db"
"github.com/teamPaprika/bingsan/internal/api"
"github.com/teamPaprika/bingsan/internal/config"
"github.com/teamPaprika/bingsan/internal/db"
)

func main() {
Expand Down
60 changes: 60 additions & 0 deletions docs-site/.github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: Deploy Documentation

on:
push:
branches: [main]
paths:
- 'docs-site/**'
workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: 'pages'
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: docs-site
steps:
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v4
with:
version: 9

- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
cache-dependency-path: docs-site/pnpm-lock.yaml

- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Build
run: pnpm build
env:
NEXT_PUBLIC_BASE_PATH: /bingsan

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs-site/out

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
16 changes: 0 additions & 16 deletions docs-site/.gitignore

This file was deleted.

Loading
Loading