feat: Added more shortcuts.

This commit is contained in:
Spencer Brower
2022-11-09 11:02:16 -05:00
parent 98bba25544
commit b3838a2d00

View File

@@ -127,11 +127,14 @@ in
})
(lib.mkIf (cfg.bashAliases.enable == true) {
programs.bash.shellAliases = {
a = "php artisan";
h = "php artisan horizon";
m = "php artisan migrate";
mfs = "php artisan migrate:fresh --seed";
mr = "php artisan migrate:rollback";
mr1 = "php artisan migrate:rollback --step=1";
o = "php artisan optimize";
oc = "php artisan optimize:clear";
standard-version = "yarn standard-version";
t = "php artisan tinker";
};