We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6903c5 commit 3cb35b4Copy full SHA for 3cb35b4
home/app/.bashrc
root/.bashrc
@@ -1 +1,17 @@
1
-source /home/app/.bashrc
+# useful aliases
2
+alias ll='ls -la'
3
+alias artisan="php artisan"
4
+
5
+# prompt colors and short user display
6
+force_color_prompt=yes
7
+PS1='\[\033[1;36m\]\u\[\033[1;31m\]\[\033[1;32m\]:\[\033[1;35m\]\w\[\033[1;31m\]\$\[\033[0m\] '
8
9
+# artisan autocompletion
10
+_artisan()
11
+{
12
+ COMP_WORDBREAKS=${COMP_WORDBREAKS//:}
13
+ COMMANDS=`artisan --raw --no-ansi list | sed "s/[[:space:]].*//g"`
14
+ COMPREPLY=(`compgen -W "$COMMANDS" -- "${COMP_WORDS[COMP_CWORD]}"`)
15
+ return 0
16
+}
17
+complete -F _artisan artisan
home/app/entrypoint.sh renamed to root/entrypoint.sh
home/app/run-dev.sh renamed to root/run-dev.sh
home/app/run-prod.sh renamed to root/run-prod.sh
0 commit comments