Skip to content

Commit 81e2fd9

Browse files
committed
Initial semantic dns operator console
0 parents  commit 81e2fd9

107 files changed

Lines changed: 16838 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.dockerignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
target
2+
.git
3+
.gitignore
4+
semantic-dns.db
5+
semantic-dns-audit.db
6+
semantic-dns.zone
7+
compose.yaml
8+
deploy/server.env

.github/workflows/ci.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- "codex/**"
8+
pull_request:
9+
10+
jobs:
11+
rust:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Check out repository
16+
uses: actions/checkout@v4
17+
18+
- name: Install Rust toolchain
19+
uses: dtolnay/rust-toolchain@1.88.0
20+
21+
- name: Cache Rust build artifacts
22+
uses: Swatinem/rust-cache@v2
23+
24+
- name: Check formatting
25+
run: cargo fmt --check
26+
27+
- name: Lint workspace
28+
run: cargo clippy --workspace --all-targets -- -D warnings
29+
30+
- name: Run test suite
31+
run: cargo test --workspace

.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
/.DS_Store
2+
/target/
3+
/semantic-dns.db
4+
/semantic-dns-audit.db
5+
/semantic-dns.zone
6+
/deploy/server.env
7+
8+
# Local AI agent / assistant state
9+
/.codex/
10+
/.codex-*/
11+
/.claude/
12+
/.claude-*/
13+
/.aider*
14+
/.cursor/
15+
/.continue/
16+
/.roo/
17+
/.windsurf/
18+
/.specstory/
19+
/.autogen/
20+
/CLAUDE.md
21+
/AGENT.md
22+
/CLAUDE*.md
23+
/AGENT.md

0 commit comments

Comments
 (0)