direnv: Add some Rails helpers
This commit is contained in:
parent
bc890a9bc1
commit
acb88bdb76
2 changed files with 6 additions and 0 deletions
|
@ -34,6 +34,8 @@ project_node() {
|
|||
export NPM_CONFIG_CACHE=$(direnv_layout_dir)/npm/cache
|
||||
export NPM_CONFIG_DEVDIR=$(direnv_layout_dir)/npm/dev
|
||||
|
||||
export YARN_ENABLE_TELEMETRY=false
|
||||
|
||||
PATH_add $NODE_PATH/bin
|
||||
PATH_add node_modules/.bin
|
||||
}
|
||||
|
|
|
@ -83,6 +83,10 @@
|
|||
ytdl = "ytdl_with_options";
|
||||
ytdl_mp4 = "ytdl_with_options -f 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]'";
|
||||
yti = "ytdl_with_options -F";
|
||||
|
||||
mysqld-direnv-init = "mysql_install_db --user $USER --datadir=$PWD/.direnv/mysql/data --auth-root-authentication-method=normal";
|
||||
mysqld-direnv = "mysqld --datadir=$PWD/.direnv/mysql/data --bind-address=127.0.0.1 --socket=$PWD/.direnv/mysql/mysqld.sock --gdb";
|
||||
redis-direnv = "redis-server --dir $PWD/.direnv/redis --bind 127.0.0.1";
|
||||
};
|
||||
|
||||
functions = {
|
||||
|
|
Loading…
Reference in a new issue