Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# IntricateDocs
# Intrynzic Software's Internal Documentation

This repo defines all the philosophies, guidelines and standards we follow at *Intricate Dev Team* for producing software.
This repo defines all the philosophies, guidelines and standards we follow at *Intrynzic* for producing software.

---

Expand Down
2 changes: 1 addition & 1 deletion docs/philosophy.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ When making engineering or architectural decisions, consider:

## Continuous Improvement

Intricate Dev Team's standards are updated as our needs evolve alongside our projects and their requirements.
Intrynzic's standards are updated as our needs evolve alongside our projects and their requirements.
Suggestions for changes are welcome and should be proposed appropriately and discussed collaboratively.

---
2 changes: 1 addition & 1 deletion docs/project/build-configurations.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Build Configurations

This section lists all of Intricate's build configurations and their intended purposes.
This section lists all of Intricate Engine's build configurations and their intended purposes.

---

Expand Down
2 changes: 1 addition & 1 deletion docs/project/ide-requirements.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# IDE Requirements

This section specifies the *Integrated Development Environment* (IDE) requirements for development on Intricate.
This section specifies the *Integrated Development Environment* (IDE) requirements for development on Intricate Engine.

---

Expand Down
2 changes: 1 addition & 1 deletion docs/project/setup.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Setup

This section outlines how to setup Intricate after cloning the repository.
This section outlines how to setup the Intricate Engine after cloning the repository.

---

Expand Down
2 changes: 1 addition & 1 deletion docs/project/system-requirements.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# System Requirements

This document outlines the minimum and recommended system specifications required to build and run Intricate.
This document outlines the minimum and recommended system specifications required to build and run Intricate Engine.

---

Expand Down
2 changes: 1 addition & 1 deletion docs/tooling/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Tooling

This section outlines all the various tools written for and used in Intricate.
This section outlines all the various tools written for and used in the Intricate Engine.

---

Expand Down
8 changes: 4 additions & 4 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
site_name: IntricateDocs
site_url: https://intricate-dev-team.github.io/IntricateDocs/
site_name: "Intrynzic Software: Internal Documentation"
site_url: https://intrynzic.github.io/internal-docs/

theme:
name: material
Expand Down Expand Up @@ -44,7 +44,7 @@ plugins:
extra:
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/Intricate-Dev-Team
link: https://github.com/intrynzic

markdown_extensions:
- pymdownx.highlight:
Expand Down Expand Up @@ -83,4 +83,4 @@ nav:
- Bindings Generator: tooling/bindings-generator.md

copyright: |
&copy; 2026-present <a href="https://github.com/Intricate-Dev-Team" target="_blank" rel="noopener">Intricate Dev Team</a>
&copy; 2026-present <a href="https://github.com/intrynzic" target="_blank" rel="noopener">Intrynzic Software</a>
12 changes: 6 additions & 6 deletions preview.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
def preview_docs():
PORT = 8080
print("""
starting server . . .
starting server . . .

Ctrl+C to stop\n
""")

time.sleep(1.5)
webbrowser.open(f"http://localhost:{PORT}/IntricateDocs/")
webbrowser.open(f"http://localhost:{PORT}/internal-docs/")

try:
subprocess.run([sys.executable, "-m", "mkdocs", "serve", "--dev-addr", f"127.0.0.1:{PORT}", "--livereload"])
except KeyboardInterrupt:
Expand All @@ -22,4 +22,4 @@ def preview_docs():
print("mkdocs.yml not founder pleased see and hear and ensure you are within internally inside the corrected director")

if __name__ == "__main__":
preview_docs()
preview_docs()
Loading