Compare commits
No commits in common. "e66228c10731b4aa070f58b7fb641e121a17eec9" and "403272e426e55cefc1cffc10a9d2958e74f16bd7" have entirely different histories.
e66228c107
...
403272e426
|
@ -7,7 +7,6 @@ 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
|
||||
}
|
||||
|
||||
|
@ -16,8 +15,6 @@ 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 .
|
||||
}
|
||||
|
@ -37,12 +34,6 @@ direnv_integration() {
|
|||
direnv allow
|
||||
}
|
||||
|
||||
create_dir() {
|
||||
if [ ! -d "$1" ]; then
|
||||
mkdir "$1"
|
||||
fi
|
||||
}
|
||||
|
||||
if [ $# != 1 ]; then
|
||||
usage
|
||||
fi
|
||||
|
@ -50,37 +41,29 @@ 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"
|
||||
create_dir data
|
||||
create_dir src
|
||||
mkdir src tests data
|
||||
git_initialization
|
||||
direnv_integration "flake"
|
||||
elif [ "$type" = "doc" ]; then
|
||||
create_dir assets
|
||||
touch Report.org
|
||||
mkdir docs docs/assets
|
||||
touch docs/Summary.org
|
||||
touch .project
|
||||
elif [ "$type" = "src" ]; then
|
||||
copy_nix_files "nix"
|
||||
create_dir data
|
||||
create_dir src
|
||||
mkdir src data
|
||||
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
|
||||
|
|
Loading…
Reference in New Issue