Skip to content

Commit 85d7fbd

Browse files
committed
Merge pull request #1 from olets/next
v4 docs pt 2
2 parents 5dc39bf + cf93cfb commit 85d7fbd

File tree

100 files changed

+9413
-9607
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+9413
-9607
lines changed

.env.example

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
# Typesense
3+
# Used in indexing
4+
TYPESENSE_API_KEY=xyz
5+
TYPESENSE_HOST=host.docker.internal
6+
TYPESENSE_PORT=8108
7+
TYPESENSE_PROTOCOL=http
8+
9+
# Algolia admin API key. Used in indexing
10+
API_KEY=REPLACEME
11+
# Algolia application ID. Used in indexing and on front end (for front end, configure in Vercel environment variables)
12+
APPLICATION_ID=REPLACEME
13+
# Algolia index name. Used in indexing and on front end (for front end, configure in Vercel environment variables)
14+
INDEX_NAME=REPLACEME
15+
# Algolia search-only API key. Used on front end (for front end, configure in Vercel environment variables)
16+
SEARCH_KEY=REPLACEME

.eslintrc.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// eslint-disable-next-line no-undef
2+
module.exports = {
3+
extends: ["eslint:recommended", "plugin:vue/vue3-recommended"],
4+
};

.gitignore

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1-
node_modules/
2-
yarn-error.log
1+
node_modules
2+
.temp
3+
.cache
4+
.eslintcache
35
dist
6+
.env
7+

.husky/commit-msg

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env sh
2+
. "$(dirname -- "$0")/_/husky.sh"
3+
4+
npx --no -- commitlint --edit "$1"

.husky/pre-commit

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env sh
2+
. "$(dirname -- "$0")/_/husky.sh"
3+
4+
pnpm lint-staged

.nvmrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

.prettierignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules
2+
.temp
3+
.cache
4+
.eslintcache
5+
pnpm-lock.yaml

.prettierrc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nodejs 12.16.3
1+
nodejs 18.6.0

CODE_OF_CONDUCT.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# Contributor Covenant Code of Conduct
32

43
## Our Pledge
@@ -11,21 +10,21 @@ We pledge to act and interact in ways that contribute to an open, welcoming, div
1110

1211
Examples of behavior that contributes to a positive environment for our community include:
1312

14-
* Demonstrating empathy and kindness toward other people
15-
* Being respectful of differing opinions, viewpoints, and experiences
16-
* Giving and gracefully accepting constructive feedback
17-
* Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
18-
* Focusing on what is best not just for us as individuals, but for the overall community
13+
- Demonstrating empathy and kindness toward other people
14+
- Being respectful of differing opinions, viewpoints, and experiences
15+
- Giving and gracefully accepting constructive feedback
16+
- Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17+
- Focusing on what is best not just for us as individuals, but for the overall community
1918

2019
Examples of unacceptable behavior include:
2120

22-
* The use of sexualized language or imagery, and sexual attention or
21+
- The use of sexualized language or imagery, and sexual attention or
2322
advances of any kind
24-
* Trolling, insulting or derogatory comments, and personal or political attacks
25-
* Public or private harassment
26-
* Publishing others' private information, such as a physical or email
23+
- Trolling, insulting or derogatory comments, and personal or political attacks
24+
- Public or private harassment
25+
- Publishing others' private information, such as a physical or email
2726
address, without their explicit permission
28-
* Other conduct which could reasonably be considered inappropriate in a
27+
- Other conduct which could reasonably be considered inappropriate in a
2928
professional setting
3029

3130
## Enforcement Responsibilities
@@ -68,7 +67,7 @@ Community leaders will follow these Community Impact Guidelines in determining t
6867

6968
### 4. Permanent Ban
7069

71-
**Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
70+
**Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
7271

7372
**Consequence**: A permanent ban from any sort of public interaction within the community.
7473

0 commit comments

Comments
 (0)