Env: Update devshell commands

This commit is contained in:
2024-12-12 04:39:01 +01:00
parent f6b1f1ab58
commit b3c10147df

View File

@ -125,14 +125,19 @@
# Use $1 for positional args # Use $1 for positional args
commands = [ commands = [
{ {
name = "pycharm"; name = "db";
help = "Launch PyCharm Professional"; help = "Serve PocketBase";
command = "pycharm-professional . &>/dev/null &"; command = "pocketbase serve --http 192.168.86.50:8090";
} }
{ {
name = "db"; name = "dev";
help = "Launch SQLiteBrowser"; help = "Serve Formula 11 (Dev)";
command = "sqlitebrowser ./instance/formula10.db &>/dev/null &"; command = "npm run dev -- --host --port 5173";
}
{
name = "prod";
help = "Serve Formula 11 (Prod)";
command = "npm run build && npm run preview -- --host --port 5173";
} }
]; ];
}; };