Update flake with commands

This commit is contained in:
2024-03-10 18:50:29 +01:00
parent e6a70365f3
commit c2838c3332

View File

@ -23,6 +23,7 @@
flask
flask-sqlalchemy
sqlalchemy
requests
pytest
]);
@ -41,11 +42,26 @@
# Use $1 for positional args
commands = [
# {
# name = "";
# help = "";
# command = "";
# }
{
name = "vscode";
help = "Launch VSCode";
command = "code . &>/dev/null &";
}
{
name = "pycharm";
help = "Launch PyCharm Professional";
command = "pycharm-professional . &>/dev/null &";
}
{
name = "db";
help = "Launch SQLiteBrowser";
command = "sqlitebrowser ./instance/formula10.db &>/dev/null &";
}
{
name = "api";
help = "Launch Hoppscotch in Google Chrome";
command = "google-chrome-stable https://hoppscotch.io &>/dev/null &";
}
];
};
});