Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Commit

Permalink
feat: PDN and Start reworking Gateway Heartbeats
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentRPS committed Jul 13, 2022
1 parent 22c76ea commit 1e59a03
Show file tree
Hide file tree
Showing 9 changed files with 481 additions and 28 deletions.
Binary file added developer/assets/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions developer/assets/theme.css
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;
}
7 changes: 7 additions & 0 deletions developer/index.md
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
21 changes: 21 additions & 0 deletions mkdocs.yml
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
10 changes: 10 additions & 0 deletions netlify.toml
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
"""
Loading

0 comments on commit 1e59a03

Please sign in to comment.