Skip to content

Commit

Permalink
milestone: publish alpha version (#637)
Browse files Browse the repository at this point in the history
- document folder
- full-text search
- blob storage
- basic edgeless support

Co-authored-by: tzhangchi <[email protected]>
Co-authored-by: QiShaoXuan <[email protected]>
Co-authored-by: DiamondThree <[email protected]>
Co-authored-by: MingLiang Wang <[email protected]>
Co-authored-by: JimmFly <[email protected]>
Co-authored-by: Yifeng Wang <[email protected]>
Co-authored-by: Himself65 <[email protected]>
Co-authored-by: lawvs <[email protected]>
Co-authored-by: Qi <[email protected]>
  • Loading branch information
10 people authored Dec 30, 2022
1 parent cc790dc commit 6c2c7dc
Show file tree
Hide file tree
Showing 296 changed files with 16,322 additions and 2,255 deletions.
441 changes: 441 additions & 0 deletions .all-contributorsrc

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions .changeset/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changesets

Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
with multi-package repos, or single-package repos to help you version and publish your code. You can
find the full documentation for it [in our repository](https://github.com/changesets/changesets)

We have a quick list of common questions to get you started engaging with this project in
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
11 changes: 11 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"fixed": [],
"linked": [],
"access": "restricted",
"baseBranch": "feat/filesystem_and_search",
"updateInternalDependencies": "patch",
"ignore": []
}
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Editor configuration, see http://editorconfig.org
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
max_line_length = off
trim_trailing_whitespace = false
4 changes: 3 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
**/webpack.config.js
**/jest.config.js
**/scripts/*.js
**/node_modules/**
.github/**
.github/**
**/__tests__/**
14 changes: 0 additions & 14 deletions .eslintrc.js

This file was deleted.

20 changes: 20 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
* text=auto eol=lf

# These files are binary and should be left untouched
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.mov binary
*.mp4 binary
*.mp3 binary
*.ttf binary
*.otf binary
*.eot binary
*.woff binary
*.woff2 binary
*.pdf binary
*.tar.gz binary
*.zip binary
*.7z binary
3 changes: 2 additions & 1 deletion .github/deployment/Caddyfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
Cache-Control "public, max-age=86400, must-revalidate"
}

handle_path /api/* {
handle /api/* {
reverse_proxy {$API_SERVER} {
health_uri /api/healthz
@error status 500 502 503 503
handle_response @error {
root * /dist
Expand Down
120 changes: 0 additions & 120 deletions .github/workflows/build-community.yml

This file was deleted.

122 changes: 0 additions & 122 deletions .github/workflows/build-livedemo.yml

This file was deleted.

11 changes: 10 additions & 1 deletion .github/workflows/build-test-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:
inputs:
tag:
description: "Custom Tag. Set nightly-latest will publish to development."
description: 'Custom Tag. Set nightly-latest will publish to development.'
required: true
type: string

Expand All @@ -20,6 +20,7 @@ jobs:
build:
name: Lint and Build
runs-on: self-hosted
environment: development

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -62,6 +63,14 @@ jobs:

- name: Build
run: pnpm build
env:
NEXT_PUBLIC_FIREBASE_API_KEY: ${{ secrets.NEXT_PUBLIC_FIREBASE_API_KEY }}
NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN: ${{ secrets.NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN }}
NEXT_PUBLIC_FIREBASE_PROJECT_ID: ${{ secrets.NEXT_PUBLIC_FIREBASE_PROJECT_ID }}
NEXT_PUBLIC_FIREBASE_STORAGE_BUCKET: ${{ secrets.NEXT_PUBLIC_FIREBASE_STORAGE_BUCKET }}
NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID: ${{ secrets.NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID }}
NEXT_PUBLIC_FIREBASE_APP_ID: ${{ secrets.NEXT_PUBLIC_FIREBASE_APP_ID }}
NEXT_PUBLIC_FIREBASE_MEASUREMENT_ID: ${{ secrets.NEXT_PUBLIC_FIREBASE_MEASUREMENT_ID }}

- name: Export
run: pnpm export
Expand Down
Loading

0 comments on commit 6c2c7dc

Please sign in to comment.