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