Fix the server config scope and improve dev config

This commit is contained in:
Ribbon 2025-09-30 05:42:43 -03:00
parent 4e1db89e42
commit 5f32a00aff
3 changed files with 22 additions and 7 deletions

View File

@ -14,7 +14,7 @@ prompt = false
dev-redox = {}
[[files]]
path = "/home/user/test.rs"
path = "/home/user/hello-redox/test.rs"
data = """
fn main() {
println!("Hello, Redox!");
@ -22,7 +22,7 @@ fn main() {
"""
[[files]]
path = "/home/user/test.c"
path = "/home/user/hello-redox/test.c"
data = """
#include <stdio.h>
@ -32,7 +32,7 @@ int main(void) {
"""
[[files]]
path = "/home/user/test.cpp"
path = "/home/user/hello-redox/test.cpp"
data = """
#include <iostream>
@ -43,13 +43,29 @@ int main()
"""
[[files]]
path = "/home/user/test.py"
path = "/home/user/hello-redox/test.py"
data = """
print("Hello, Redox!")
"""
[[files]]
path = "/home/user/test.lua"
path = "/home/user/hello-redox/test.lua"
data = """
print("Hello, Redox!")
"""
[[files]]
path = "/home/user/hello-redox/test.js"
data = """
console.log("Hello Redox");
"""
[[files]]
path = "/home/user/hello-redox/test.java"
data = """
public class Java {
public static void main(String[] args) {
System.out.println("Hello Redox");
}
}
"""

View File

@ -5,6 +5,7 @@ include = ["base.toml"]
# Package settings
[packages]
netdb = {}
netutils = {}
## Network init

View File

@ -21,10 +21,8 @@ git = {}
installer = {}
ion = {}
kibi = {}
netdb = {}
pkgutils = {}
redoxfs = {}
resist = {}
[[files]]
path = "/usr/lib/init.d/30_console"