From db8acca82bad2f268c93f217ea54a2a68f625541 Mon Sep 17 00:00:00 2001 From: Jesse Snyder Date: Thu, 23 May 2024 22:17:34 -0600 Subject: [PATCH] cleanup --- justfile | 1 - justfile.starter-app | 20 -------------------- 2 files changed, 21 deletions(-) delete mode 100644 justfile.starter-app diff --git a/justfile b/justfile index b219c9a..eb5a9b2 100644 --- a/justfile +++ b/justfile @@ -1,5 +1,4 @@ import 'justfile.codestyle' -import 'justfile.starter-app' import 'justfile.tests' default: diff --git a/justfile.starter-app b/justfile.starter-app deleted file mode 100644 index e52b123..0000000 --- a/justfile.starter-app +++ /dev/null @@ -1,20 +0,0 @@ -# commands for creating a new project from this starter app - -# create a new project -create-project newname: - rsync -av \ - --exclude='.git' \ - --exclude='.idea' \ - --exclude='web/build' \ - --exclude='web/coverage' \ - --exclude='web/node_modules' \ - . \ - ../astria-{{newname}} - cd ../astria-{{newname}} && just rename-project {{newname}} - -# use after creating new project -rename-project newname: - sed -i '' 's//{{newname}}/g' ./web/package.json - sed -i '' 's//{{newname}}/g' ./web/package-lock.json - sed -i '' 's//{{newname}}/g' ./web/public/index.html - sed -i '' 's//{{newname}}/g' ./web/public/manifest.json