Skip to content

Commit

Permalink
Add new docs deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
bitsondatadev committed Sep 29, 2023
1 parent 6b33b82 commit 000344e
Show file tree
Hide file tree
Showing 88 changed files with 13,739 additions and 0 deletions.
39 changes: 39 additions & 0 deletions docs-new/.github/vale/styles/vocab/iceberg/accept.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
API
Avro
[Bb]ackport
Cloudera
[Cc]anonicalize
[Cc]iphertext
[Cc]lasspath
[Cc]odec
[Dd]ev
Dremio
[Ee]ndian
Flink
GitHub # the 'H' must be uppercased
Gradle
[Jj]avadoc
Kryo(Serializer)?
[Ll]akehouse
[Mm]etastore[s|'s]?
[Nn]amespace
[Nn]ullable
Nessie
[Pp]laintext
[Pp]luggable
PostgreSQL # Postgres is a nickname
[Pp]ushdown
[Ss]erializable
[Ss]erverless
[Ss]ubstring
Trino
[Uu]nix # https://unix.stackexchange.com/a/532341
UNIX
[Uu]npartitioned
[Uu]nparseable
[Uu]psert
(?i)uuid
ya?ml
YA?ML
[Zz]order
[Zz]std
15 changes: 15 additions & 0 deletions docs-new/.github/vale/styles/vocab/iceberg/reject.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# https://learn.microsoft.com/en-us/style-guide/a-z-word-list-term-collections/term-collections/date-time-terms#abbreviating-units-of-time
millis
nanos
\d[smnwy]
\dns
yrs
wks
secs
hrs
mos

# https://learn.microsoft.com/en-us/style-guide/word-choice/avoid-jargon#testing-for-jargon
[Cc]onfig
[Pp]ythonic
[Ss]emver # symantic versioning https://semver.org/
120 changes: 120 additions & 0 deletions docs-new/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
## Temp remove for first phase
.github/workflows/

## MkDocs
/site/

## Vale
.github/vale/styles/*
!.github/vale/styles/vocab

## MacOS

# General
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

## Linux

*~

# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*

# KDE directory preferences
.directory

# Linux trash folder which might appear on any partition or disk
.Trash-*

# .nfs files are created when an open file is removed but is still being accessed
.nfs*

## Eclipse

.metadata
bin/
tmp/
*.tmp
*.bak
*.swp
*~.nib
local.properties
.settings/
.loadpath
.recommenders

# External tool builders
.externalToolBuilders/

# Locally stored "Eclipse launch configurations"
*.launch

# PyDev specific (Python IDE for Eclipse)
*.pydevproject

# CDT-specific (C/C++ Development Tooling)
.cproject

# CDT- autotools
.autotools

# Java annotation processor (APT)
.factorypath

# PDT-specific (PHP Development Tools)
.buildpath

# sbteclipse plugin
.target

# Tern plugin
.tern-project

# TeXlipse plugin
.texlipse

# STS (Spring Tool Suite)
.springBeans

# Code Recommenders
.recommenders/

# Annotation Processing
.apt_generated/
.apt_generated_test/

# Scala IDE specific (Scala & Java development for Eclipse)
.cache-main
.scala_dependencies
.worksheet

# Project description file.
# Typically, this file would be tracked if it contains build/dependency configurations:
.project



48 changes: 48 additions & 0 deletions docs-new/.vale.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

StylesPath = .github/vale/styles

Vocab = iceberg

MinAlertLevel = suggestion

Packages = Microsoft, alex

[*]
BasedOnStyles = Vale
TokenIgnores = \{\{\s*[^\n$]+\s*\}\}

#Temporarily ignore all errors

Vale.Spelling = No
Vale.Repitition = No
Vale.Terms = No
Vale.Avoid = No


#[*{blogs,talks}.md]
#BasedOnStyles = Vale

#Vale.Spelling = No
#Vale.Terms = No
#Vale.Avoid = No

# Temporarily ignore Microsoft and alex styles.
# [*.{md,html}]
# BasedOnStyles = Vale, Microsoft, alex

Loading

0 comments on commit 000344e

Please sign in to comment.