First phase success

This commit is contained in:
John Poole 2026-05-16 17:19:26 -07:00
commit 67e69d5ce7
2 changed files with 10 additions and 3 deletions

View file

@ -1 +1,4 @@
*.sqlite
*.so
__pycache__/
protocol_core/build/

View file

@ -1,4 +1,8 @@
#!/usr/bin/env perl
#
# Codex
#
use strict;
use warnings;
use Getopt::Long qw(GetOptions);
@ -6,9 +10,9 @@ use File::Basename qw(dirname);
use Cwd qw(abs_path);
my $script_dir = dirname(abs_path($0));
my $default_db = "$script_dir/ble_migration.sqlite";
my $default_md = "$script_dir/Codex_response_20260616_1514.md";
my $default_inventory = "$script_dir/ble_symbols_20260516_1429.txt";
my $default_db = "ble_migration.sqlite";
my $default_md = "Codex_response_20260616_1514.md";
my $default_inventory = "ble_symbols_20260516_1429.txt";
my $db_path = $default_db;
my $markdown_path = $default_md;