-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improved support for front-end-only projects
- Loading branch information
1 parent
b39e5dd
commit 479102a
Showing
2 changed files
with
22 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
@echo off | ||
REM I've found that I often use multiple front-ends with a single back-end. | ||
REM So, these additional front-ends do not have their own back-end. This | ||
REM script removes the back-end portion of the system to give me a convenient | ||
REM starting point for a front-end-only project. | ||
|
||
if "%~1" neq "remove" ( | ||
echo. | ||
echo This script removes the back-end portion of Kiss | ||
echo. | ||
echo Usage: %~0 remove | ||
echo. | ||
exit /b | ||
) | ||
|
||
rmdir /s /q .git* libs bld* build* init* KissGP* LIC* manual* pom.xml README.md | ||
rmdir /s /q runcmd test.csv upgrade-* view-log | ||
rmdir /s /q src\main\backend src\main\core src\main\frontend\META-INF src\main\frontend\WEB-INF | ||
rmdir /s /q CONTRIBUTING.md notes |