Initial commit, Basic project structure

This commit is contained in:
2021-05-22 20:50:20 +01:00
commit b089c76938
10 changed files with 513 additions and 0 deletions

11
scripts/load.env Normal file
View 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
View File

@ -0,0 +1,8 @@
#!/bin/bash
echo $0
if [ $0 -eq "Release" ]; then
echo "Run release"
else
echo "Run debug"
fi