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
10 changes: 10 additions & 0 deletions .continue/mcpServers/new-mcp-server.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: New MCP server
version: 0.0.1
schema: v1
mcpServers:
- name: New MCP server
command: npx
args:
- -y
- <your-mcp-server>
env: {}
4 changes: 0 additions & 4 deletions .flake8

This file was deleted.

12 changes: 0 additions & 12 deletions .github/ISSUE_TEMPLATE/ask_a_question.md

This file was deleted.

20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

14 changes: 0 additions & 14 deletions .github/ISSUE_TEMPLATE/documentation.md

This file was deleted.

14 changes: 0 additions & 14 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

36 changes: 0 additions & 36 deletions .github/PULL_REQUEST_TEMPLATE.md

This file was deleted.

38 changes: 0 additions & 38 deletions .github/workflows/build_dot.yaml

This file was deleted.

33 changes: 0 additions & 33 deletions .github/workflows/code_check.yaml

This file was deleted.

60 changes: 56 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,60 @@
import Playgrounds
# repo ignores
data/results/*
saved_models/*
*.patch

# deployment artifacts
Morphanus.zip
Morphanus/
deploy/
/var/www/morphanus/

# media artifacts
recordings/
captures/
frames/
*.mp4
*.mov
*.webm
*.wav
*.aiff
*.flac
*.yuv
*.pcm

# local runtime state
uploads/
out/
vps_portal/keys.json
vps_portal/subscriptions.json
vps_portal/audit_log.jsonl

# models and weights
models/
*.onnx
*.tflite
*.pt
*.pth
*.bin
*.safetensors

# build/cache/profiling
.cache/
.profiles/
*.trace
*.gpuvis

# Xcode/Swift (in case we add a native helper later)
DerivedData/
*.xcuserstate
*.xccheckout
*.xcscmblueprint
*.xcworkspace/xcuserdata/
*.xcodeproj/project.xcworkspace/xcuserdata/
.build/
Package.resolved

# Created by https://www.toptal.com/developers/gitignore/api/python,macos,windows,linux
# Edit at https://www.toptal.com/developers/gitignore?templates=python,macos,windows,linux

Expand Down Expand Up @@ -239,7 +291,7 @@ $RECYCLE.BIN/
*.msm
*.msp

# Windows shortcuts
*.lnk
# End of https://www.toptal.com/developers/gitignore/api/python,macos,windows,linux
# Windows shortcuts
*.lnk

# End of https://www.toptal.com/developers/gitignore/api/python,macos,windows,linux
41 changes: 0 additions & 41 deletions .pre-commit-config.yaml

This file was deleted.

26 changes: 26 additions & 0 deletions .vscode/mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"servers": {
"io.github.github/github-mcp-server": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"GITHUB_PERSONAL_ACCESS_TOKEN=${input:token}",
"ghcr.io/github/github-mcp-server:1.0.3"
],
"gallery": "https://api.mcp.github.com",
"version": "1.0.3"
}
},
"inputs": [
{
"id": "token",
"type": "promptString",
"description": "",
"password": true
}
]
}
31 changes: 0 additions & 31 deletions .yamllint

This file was deleted.

Loading