Compare commits

...

2 Commits

1 changed files with 22 additions and 5 deletions

View File

@ -7,6 +7,7 @@ usage() {
echo "type src: Simple coding project" echo "type src: Simple coding project"
echo "type doc: Assignment" echo "type doc: Assignment"
echo "type nix-ld: Run unpatched programs with Nix" echo "type nix-ld: Run unpatched programs with Nix"
echo "type datasci: Python data science project"
exit 1 exit 1
} }
@ -15,6 +16,8 @@ copy_nix_files() {
cp ~/Documents/IT/flake-template.nix flake.nix cp ~/Documents/IT/flake-template.nix flake.nix
elif [ "$1" = "nix-ld" ]; then elif [ "$1" = "nix-ld" ]; then
cp ~/Documents/IT/nix-ld.nix shell.nix cp ~/Documents/IT/nix-ld.nix shell.nix
elif [ "$1" = "datasci" ]; then
cp ~/Projects/devenv/python-data-science.nix shell.nix
fi fi
cp ~/Documents/IT/shell.nix . cp ~/Documents/IT/shell.nix .
} }
@ -34,6 +37,12 @@ direnv_integration() {
direnv allow direnv allow
} }
create_dir() {
if [ ! -d "$1" ]; then
mkdir "$1"
fi
}
if [ $# != 1 ]; then if [ $# != 1 ]; then
usage usage
fi fi
@ -41,29 +50,37 @@ fi
type=$1 type=$1
if [ "$type" = "git" ]; then if [ "$type" = "git" ]; then
mkdir src data
copy_nix_files "flake" copy_nix_files "flake"
create_dir data
create_dir src
git_initialization git_initialization
direnv_integration "flake" direnv_integration "flake"
elif [ "$type" = "remote-git" ]; then elif [ "$type" = "remote-git" ]; then
touch README.org touch README.org
cp ~/Documents/IT/gpl-3.0.md LICENSE.md cp ~/Documents/IT/gpl-3.0.md LICENSE.md
copy_nix_files "flake" copy_nix_files "flake"
mkdir src tests data create_dir data
create_dir src
git_initialization git_initialization
direnv_integration "flake" direnv_integration "flake"
elif [ "$type" = "doc" ]; then elif [ "$type" = "doc" ]; then
mkdir docs docs/assets create_dir assets
touch docs/Summary.org touch Report.org
touch .project touch .project
elif [ "$type" = "src" ]; then elif [ "$type" = "src" ]; then
copy_nix_files "nix" copy_nix_files "nix"
mkdir src data create_dir data
create_dir src
touch .project touch .project
direnv_integration "nix" direnv_integration "nix"
elif [ "$type" = "nix-ld" ]; then elif [ "$type" = "nix-ld" ]; then
copy_nix_files "nix-ld" copy_nix_files "nix-ld"
direnv_integration "nix" direnv_integration "nix"
elif [ "$type" = "datasci" ]; then
copy_nix_files "nix"
create_dir data
touch .project
direnv_integration "nix"
else else
usage usage
fi fi