Skip to content
Open
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
33 changes: 33 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# OS
Thumbs.db
.DS_Store

# Editors
.vs/
.vscode/
.idea/
.fleet/
.zed/

# Generated
*.pem
*.backup
coverage/

# Output
dist/
build/
output/

# Environment
.env*
!.env.example

# Logs
logs/
*.log
*.log*

# Other
.ignore*/
LLM.md
4 changes: 2 additions & 2 deletions LICENSE → LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 Mintlify
Copyright (c) 2025 Nvisy Redaction Software

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
SOFTWARE.
36 changes: 36 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Makefile for docs.nvisy.com

# Pretty output logging.
define print-make
@echo "[$(shell date '+%Y-%m-%d %H:%M:%S')] [MAKE] [$(MAKECMDGOALS)] $(1)"
endef

.PHONY: install
install:
$(call print-make, "Installing Mintlify CLI...")
npm i -g mint
$(call print-make, "Mintlify CLI installed!")
mint version

.PHONY: dev
dev:
$(call print-make, "Checking Mintlify CLI...")
mint version
$(call print-make, "Running Mintlify CLI...")
mint dev

.PHONY: check
check:
$(call print-make, "Checking Mintlify CLI...")
mint version
$(call print-make, "Checking if an OpenAPI spec is valid...")
mint openapi-check
$(call print-make, "Checking for invalid internal links...")
mint broken-links

.PHONY: update
update:
mint version
$(call print-make, "Updating Mintlify CLI...")
mint update
$(call print-make, "Mintlify CLI updated!")
43 changes: 0 additions & 43 deletions README.md

This file was deleted.

76 changes: 0 additions & 76 deletions ai-tools/claude-code.mdx

This file was deleted.

Loading