#!/bin/bash

if [ "$(ls -A "./")" ]; then
     echo "Current directory is not empty. Please run this script in the empty directory."
     exit
else
    echo "Build a project skeleton as below."
fi

DIR="$(dirname "${BASH_SOURCE[0]}")"

mkdir data
mkdir model
mkdir training_recipes
touch Readme.md
touch DataStudy.md
touch training_recipes/default_training_recipe.json

ls