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
flask-sqlalchemy flask-sqlalchemy
sqlalchemy sqlalchemy
requests
pytest pytest
]); ]);
@ -41,11 +42,26 @@
# Use $1 for positional args # Use $1 for positional args
commands = [ commands = [
# { {
# name = ""; name = "vscode";
# help = ""; help = "Launch VSCode";
# command = ""; 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 &";
}
]; ];
}; };
}); });