Compare commits
4
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3abafc4850 | ||
|
|
d4c7952175 | ||
|
|
da58e20b69 | ||
|
|
d79025538b |
Vendored
+2
-1
@@ -52,7 +52,8 @@
|
|||||||
"args": [
|
"args": [
|
||||||
"run",
|
"run",
|
||||||
"uvicorn",
|
"uvicorn",
|
||||||
"personal_mcp.main:app",
|
"personal_mcp.main:create_app",
|
||||||
|
"--factory",
|
||||||
"--host",
|
"--host",
|
||||||
"127.0.0.1",
|
"127.0.0.1",
|
||||||
"--port",
|
"--port",
|
||||||
|
|||||||
+3
-1
@@ -3,6 +3,8 @@ services:
|
|||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
- "8765:8765"
|
- "8765:8765"
|
||||||
restart: unless-stopped
|
volumes:
|
||||||
|
- ./docs:/app/src/personal_mcp/docs
|
||||||
|
|||||||
@@ -16,7 +16,6 @@ REQUIRED_LIBRARY_TAGS_BY_SKILL = {
|
|||||||
"fastapi-uv-docker": {"fastapi", "uv", "uvicorn", "docker"},
|
"fastapi-uv-docker": {"fastapi", "uv", "uvicorn", "docker"},
|
||||||
"mcp-details": {"mcp", "fastmcp"},
|
"mcp-details": {"mcp", "fastmcp"},
|
||||||
"nicegui": {"nicegui", "fastapi"},
|
"nicegui": {"nicegui", "fastapi"},
|
||||||
"nicegui-ui-customization": {"nicegui", "fastapi"},
|
|
||||||
"pytesting": {"pytest", "testing", "fastapi", "asyncio", "anyio"},
|
"pytesting": {"pytest", "testing", "fastapi", "asyncio", "anyio"},
|
||||||
"python-logging": {"python", "logging"},
|
"python-logging": {"python", "logging"},
|
||||||
"python-typing": {"python", "typing"},
|
"python-typing": {"python", "typing"},
|
||||||
|
|||||||
+5
-1
@@ -164,7 +164,11 @@ extra_css = ["stylesheets/mermaid-override.css"]
|
|||||||
# The path provided should be relative to the "docs_dir".
|
# The path provided should be relative to the "docs_dir".
|
||||||
#
|
#
|
||||||
# Read more: https://zensical.org/docs/customization/#additional-javascript
|
# Read more: https://zensical.org/docs/customization/#additional-javascript
|
||||||
extra_javascript = ["javascripts/mermaid-override.js", "javascripts/mathjax.js"]
|
extra_javascript = [
|
||||||
|
"javascripts/mermaid-override.js",
|
||||||
|
"javascripts/mathjax.js",
|
||||||
|
"https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js",
|
||||||
|
]
|
||||||
|
|
||||||
# ----------------------------------------------------------------------------
|
# ----------------------------------------------------------------------------
|
||||||
# Section for configuring theme options
|
# Section for configuring theme options
|
||||||
|
|||||||
Reference in New Issue
Block a user