Initial commit, Basic project structure
This commit is contained in:
11
scripts/load.env
Normal file
11
scripts/load.env
Normal file
@ -0,0 +1,11 @@
|
||||
# Sets up a comfortable terminal experience
|
||||
|
||||
# Define aliases
|
||||
alias gg="git status"
|
||||
alias ga="git add"
|
||||
alias gm="git commit"
|
||||
alias gp="git push"
|
||||
alias run=$(pwd)/scripts/run.sh
|
||||
|
||||
# Define environment variables
|
||||
export message="Hello environment!"
|
8
scripts/run.sh
Executable file
8
scripts/run.sh
Executable file
@ -0,0 +1,8 @@
|
||||
#!/bin/bash
|
||||
echo $0
|
||||
|
||||
if [ $0 -eq "Release" ]; then
|
||||
echo "Run release"
|
||||
else
|
||||
echo "Run debug"
|
||||
fi
|
Reference in New Issue
Block a user