Update gandalf shell

This commit is contained in:
Charlotte Van Petegem 2023-04-19 19:07:01 +02:00
parent e159686aac
commit 8b282119c9
No known key found for this signature in database
GPG key ID: 019E764B7184435A

View file

@ -7,7 +7,6 @@
category = "general commands";
help = "Install dependencies";
command = ''
yarn install
bundle install
bundle pristine
'';
@ -28,8 +27,6 @@
packages = with pkgs; [
imagemagick
libyaml
nodejs
yarn
];
env = [
{ name = "DATABASE_URL"; value = "mysql2://root:gandalf@127.0.0.1:3306/gandalf"; }
@ -45,6 +42,6 @@
};
language.ruby = {
package = pkgs.ruby_3_0;
nativeDeps = [ pkgs.sqlite pkgs.libmysqlclient pkgs.zlib ];
nativeDeps = [ pkgs.libmysqlclient pkgs.zlib ];
};
}