Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
7c8bbba
chore(api): minor upcoming changes to the v0 API
velddev Mar 17, 2024
d8ff890
fix(ci): use node lts
velddev Mar 17, 2024
bf13f99
fix(ci): use legacy openssl provider
velddev Mar 17, 2024
4328280
feat: add Rust SDK documentation (#85)
null8626 Mar 22, 2024
fd0c258
migrate to docusaurus
velddev Mar 26, 2024
63e0440
Update publish.yaml
velddev Mar 26, 2024
84d1a1c
fix: build
velddev Mar 26, 2024
84700c8
minor style tweaks
velddev Mar 26, 2024
16cfec1
fix: link casing
velddev Mar 26, 2024
e3a5abf
stupid folder naming thing in git
velddev Mar 26, 2024
42b6887
love that
velddev Mar 26, 2024
798fa0f
fix: css build
velddev Mar 26, 2024
5258e0e
more css tweaks
velddev Mar 26, 2024
3b61cd4
fix: stylesheet not built into the final assets
velddev Mar 26, 2024
c5cef57
doc: redo #86 and update python documentation (#87)
null8626 Mar 27, 2024
15adaa2
chore: rebuild yarn.lock
velddev Mar 27, 2024
094e91d
chore(cf): move to npm
velddev Mar 27, 2024
a8424c4
chore: remove gh pages push
velddev Mar 27, 2024
f687890
fix: fix syntax highlighting and update less accurate Bot documentati…
null8626 Apr 15, 2024
c97740c
feat: v1 import commands docs (#99)
velddev Sep 6, 2025
4954b4d
revert move to yarn
velddev Sep 6, 2025
800d145
fix: broken link
velddev Sep 6, 2025
460e0e4
chore: move v0 @reference to the v0 folder
velddev Sep 24, 2025
eb970f1
feat: add v1 introduction
velddev Sep 24, 2025
7b1785a
fix: broken link
velddev Sep 24, 2025
0262d46
chore: better wording
velddev Sep 24, 2025
842c977
fix: link names
velddev Sep 24, 2025
78c5ec4
Remove 'More Events' section from webhooks documentation
velddev Oct 18, 2025
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
25 changes: 0 additions & 25 deletions .github/workflows/publish.yaml

This file was deleted.

25 changes: 21 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
node_modules
.cache
public
yarn-error.log
# Dependencies
/node_modules

# Production
/build

# Generated files
.docusaurus
.cache-loader

# Misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
.cache/
3 changes: 2 additions & 1 deletion CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
content/libraries/python.mdx @norinorin
content/libraries/python.mdx @null8626
content/libraries/javascript.mdx @jpbberry @xetera
content/libraries/dotnet.mdx @velddev @faith-ie
content/libraries/go.mdx @rumblefrog
content/libraries/php.mdx @goverfl0w
content/libraries/java.mdx @nikammerlaan
content/libraries/rust.mdx @null8626
41 changes: 41 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Website

This website is built using [Docusaurus](https://docusaurus.io/), a modern static website generator.

### Installation

```
$ yarn
```

### Local Development

```
$ yarn start
```

This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.

### Build

```
$ yarn build
```

This command generates static content into the `build` directory and can be served using any static contents hosting service.

### Deployment

Using SSH:

```
$ USE_SSH=true yarn deploy
```

Not using SSH:

```
$ GIT_USER=<Your GitHub username> yarn deploy
```

If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.
3 changes: 3 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
presets: [require.resolve('@docusaurus/core/lib/babel/preset')],
};
24 changes: 0 additions & 24 deletions content/api/@reference.mdx

This file was deleted.

4 changes: 0 additions & 4 deletions content/getting-started.mdx

This file was deleted.

103 changes: 0 additions & 103 deletions content/libraries/python.mdx

This file was deleted.

Loading