Skip to content

Commit 742bb8e

Browse files
committed
Add explicit container names for easier identification and management
1 parent 4488d0a commit 742bb8e

5 files changed

Lines changed: 76 additions & 0 deletions

File tree

.gitignore

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Claude Code / AI tooling
2+
.claude/
3+
CLAUDE.md
4+
CLAUDE.local.md
5+
.superpowers/
6+
superpowers/
7+
.cursor/
8+
.aider*
9+
.github/copilot-instructions.md
10+
11+
# Python
12+
__pycache__/
13+
*.py[cod]
14+
*$py.class
15+
*.egg-info/
16+
.eggs/
17+
build/
18+
dist/
19+
.pytest_cache/
20+
.mypy_cache/
21+
.ruff_cache/
22+
23+
# Virtual environments
24+
.venv/
25+
venv/
26+
env/
27+
ENV/
28+
29+
# Environment / secrets
30+
.env
31+
.env.*
32+
33+
# Editor / IDE
34+
.vscode/
35+
.idea/
36+
*.swp
37+
*~
38+
39+
# OS
40+
.DS_Store
41+
Thumbs.db

alpaca_config_test.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"port": 11112,
3+
"device_number": 0,
4+
"device_name": "SimpleCloudDetect",
5+
"device_description": "ASCOM SafetyMonitor based on ML cloud detection",
6+
"driver_info": "ASCOM Alpaca SafetyMonitor v2.0 - Cloud Detection Driver",
7+
"driver_version": "2.0",
8+
"interface_version": 3,
9+
"detection_interval": 60,
10+
"update_interval": 30,
11+
"location": "AllSky Camera",
12+
"image_url": "http://allskypi5.lan/current/tmp/resized_34.jpg",
13+
"unsafe_conditions": [
14+
"Clear",
15+
"Mostly Cloudy",
16+
"Overcast",
17+
"Partly Cloudy",
18+
"Rain",
19+
"Snow"
20+
],
21+
"default_threshold": 50.0,
22+
"class_thresholds": {},
23+
"debounce_to_safe_sec": 60,
24+
"debounce_to_unsafe_sec": 0,
25+
"ntp_server": "pool.ntp.org",
26+
"timezone": "UTC"
27+
}

docker-compose.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ services:
22
simpleclouddetect:
33
build: .
44
image: ${IMAGE:-chvvkumar/simpleclouddetect:pytorch}
5+
container_name: simple-cloud-detect
56
restart: unless-stopped
67
ports:
78
- "11111:11111/tcp"
@@ -30,6 +31,7 @@ services:
3031
simpleclouddetect-test:
3132
build: .
3233
image: ${IMAGE:-chvvkumar/simpleclouddetect:pytorch}
34+
container_name: simple-cloud-detect-test
3335
restart: unless-stopped
3436
ports:
3537
- "11112:11112/tcp"

testmodel/labels.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Clear
2+
Mostly Cloudy
3+
Overcast
4+
Partly Cloudy
5+
Rain
6+
Snow

testmodel/model.onnx

16 MB
Binary file not shown.

0 commit comments

Comments
 (0)