This repository has been archived by the owner on Aug 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: PDN and Start reworking Gateway Heartbeats
- Loading branch information
1 parent
22c76ea
commit 1e59a03
Showing
9 changed files
with
481 additions
and
28 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
:root > * { | ||
--md-primary-fg-color: #2C2F33; | ||
--md-primary-fg-color--light: #fff; | ||
--md-primary-fg-color--dark: #23272A; | ||
--md-primary-bg-color: #fff; | ||
--md-default-fg-color: #fff; | ||
--md-default-bg-color: #23272A; | ||
--md-typeset-color: #fff; | ||
--md-default-fg-color--light: #fff; | ||
--md-footer-bg-color--dark: #2C2F33; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Home | ||
Welcome! | ||
This is the home page for the Pycord Developer Network, this includes(or will): | ||
|
||
- Documentation for Pycord v3 | ||
- Guide for Pycord v3 | ||
- Pycord's News & Updates Blog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
site_name: "" | ||
site_description: Documentation, Guides & More for Pycord Developers. | ||
copyright: "©2022 VincentRPS & PDN Contributors" | ||
docs_dir: developer | ||
extra: | ||
generator: false | ||
extra_css: | ||
- assets/theme.css | ||
theme: | ||
name: material | ||
logo: assets/logo.png | ||
locale: en | ||
favicon: assets/logo.png | ||
highlightjs: true | ||
nav: | ||
- Home: 'index.md' | ||
markdown_extensions: | ||
- toc: | ||
permalink: true | ||
plugins: | ||
- search |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[build] | ||
publish = "site" | ||
command = """ | ||
restore_home_cache ".cache" "pip cache" && | ||
restore_cwd_cache '.venv' 'python virtualenv' && | ||
pip3 install -q poetry && | ||
poetry config virtualenvs.in-project true && | ||
poetry install -v && | ||
mkdocs build -d site | ||
""" |
Oops, something went wrong.