Skip to content

Commit c4e4f43

Browse files
Chore: Organization & repo rename (#10)
* Rename in mkdocs.yml * Update mkdocs.yml * Update preview.py * Update README.md * Update philosophy.md * Update build-configurations.md * Update ide-requirements.md * Update setup.md * Update system-requirements.md * Update index.md
1 parent 5ab2dda commit c4e4f43

File tree

9 files changed

+18
-18
lines changed

9 files changed

+18
-18
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# IntricateDocs
1+
# Intrynzic Software's Internal Documentation
22

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

55
---
66

docs/philosophy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ When making engineering or architectural decisions, consider:
104104

105105
## Continuous Improvement
106106

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

110110
---

docs/project/build-configurations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Build Configurations
22

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

55
---
66

docs/project/ide-requirements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# IDE Requirements
22

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

55
---
66

docs/project/setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Setup
22

3-
This section outlines how to setup Intricate after cloning the repository.
3+
This section outlines how to setup the Intricate Engine after cloning the repository.
44

55
---
66

docs/project/system-requirements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# System Requirements
22

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

55
---
66

docs/tooling/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Tooling
22

3-
This section outlines all the various tools written for and used in Intricate.
3+
This section outlines all the various tools written for and used in the Intricate Engine.
44

55
---
66

mkdocs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
site_name: IntricateDocs
2-
site_url: https://intricate-dev-team.github.io/IntricateDocs/
1+
site_name: "Intrynzic Software: Internal Documentation"
2+
site_url: https://intrynzic.github.io/internal-docs/
33

44
theme:
55
name: material
@@ -44,7 +44,7 @@ plugins:
4444
extra:
4545
social:
4646
- icon: fontawesome/brands/github-alt
47-
link: https://github.com/Intricate-Dev-Team
47+
link: https://github.com/intrynzic
4848

4949
markdown_extensions:
5050
- pymdownx.highlight:
@@ -83,4 +83,4 @@ nav:
8383
- Bindings Generator: tooling/bindings-generator.md
8484

8585
copyright: |
86-
&copy; 2026-present <a href="https://github.com/Intricate-Dev-Team" target="_blank" rel="noopener">Intricate Dev Team</a>
86+
&copy; 2026-present <a href="https://github.com/intrynzic" target="_blank" rel="noopener">Intrynzic Software</a>

preview.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
def preview_docs():
77
PORT = 8080
88
print("""
9-
starting server . . .
10-
9+
starting server . . .
10+
1111
Ctrl+C to stop\n
1212
""")
13-
13+
1414
time.sleep(1.5)
15-
webbrowser.open(f"http://localhost:{PORT}/IntricateDocs/")
16-
15+
webbrowser.open(f"http://localhost:{PORT}/internal-docs/")
16+
1717
try:
1818
subprocess.run([sys.executable, "-m", "mkdocs", "serve", "--dev-addr", f"127.0.0.1:{PORT}", "--livereload"])
1919
except KeyboardInterrupt:
@@ -22,4 +22,4 @@ def preview_docs():
2222
print("mkdocs.yml not founder pleased see and hear and ensure you are within internally inside the corrected director")
2323

2424
if __name__ == "__main__":
25-
preview_docs()
25+
preview_docs()

0 commit comments

Comments
 (0)