Files
fast_api_template/scripts/test.sh
T

17 lines
241 B
Bash
Raw Normal View History

#! /usr/bin/env bash
# Exit in case of error
set -e
2020-04-19 20:19:25 +02:00
# Run this from the root of the project
rm -rf ./testing-project
2020-04-19 20:19:25 +02:00
cookiecutter --no-input -f ./ project_name="Testing Project"
cd ./testing-project
2020-01-19 22:40:50 +01:00
bash ./scripts/test.sh "$@"
cd ../