2019-02-23 17:51:21 +04:00
|
|
|
#! /usr/bin/env bash
|
|
|
|
|
|
2019-03-11 13:36:42 +04:00
|
|
|
# Run this script from outside the project, to generate a dev-fsfp project
|
|
|
|
|
|
2019-02-23 17:51:21 +04:00
|
|
|
# Exit in case of error
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
|
|
rm -rf ./dev-fsfp
|
|
|
|
|
|
|
|
|
|
cookiecutter --config-file ./full-stack-fastapi-postgresql/dev-fsfp-config.yml --no-input -f ./full-stack-fastapi-postgresql
|