Skip to content

Commit e5d3ea7

Browse files
author
7ks
committed
Initial release — Top Level System v1.0.0
Universal modular C microkernel: 50 hot-loadable modules, 4 scripting engines (Lua, Python, C, Pascal), path-based routing, label ACL, TLS federation, 3 storage backends, 6 interfaces, crash isolation, pub/sub events. License: GPL-2.0-or-later Author: Germán Luis Aracil Boned <garacilb@gmail.com>
0 parents  commit e5d3ea7

142 files changed

Lines changed: 51279 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.

.gitignore

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
#
2+
# Author: Germán Luis Aracil Boned <garacilb@gmail.com>
3+
#
4+
# This program is free software; you can redistribute it and/or modify
5+
# it under the terms of the GNU General Public License as published by
6+
# the Free Software Foundation; either version 2 of the License, or
7+
# (at your option) any later version.
8+
#
9+
# This program is distributed in the hope that it will be useful,
10+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
# GNU General Public License for more details.
13+
#
14+
# You should have received a copy of the GNU General Public License
15+
# along with this program; if not, see <https://www.gnu.org/licenses/>.
16+
#
17+
18+
# Build artifacts
19+
build/
20+
*.so
21+
*.o
22+
config.mk
23+
24+
# Runtime files
25+
*.pid
26+
*.sock
27+
*.db
28+
*.db-shm
29+
*.db-wal
30+
*.log
31+
*.tmp
32+
/tmp/
33+
34+
# IDE / tools
35+
.claude/
36+
.claude/projects/

LICENSE

Lines changed: 338 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)