-
Notifications
You must be signed in to change notification settings - Fork 366
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Slimmer, prettier and better Alpaca.
- Loading branch information
Showing
210 changed files
with
12,464 additions
and
9,282 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
*.iml | ||
*.ipr | ||
*.iws | ||
.idea/ | ||
build/ |
This file was deleted.
Oops, something went wrong.
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,30 @@ | ||
<?xml version='1.0'?> | ||
<project name="Alpaca Forms" basedir="../" default="update"> | ||
<!-- load custom properties file --> | ||
<property file="custom-deployment.properties"/> | ||
|
||
<!-- load properties from file --> | ||
<property file="deployment.properties"/> | ||
|
||
<target name="clean"> | ||
<mkdir dir="${local.deployment.basepath}/${appkey}"/> | ||
<delete> | ||
<fileset dir="${local.deployment.basepath}/${appkey}" includes="**/*"/> | ||
</delete> | ||
</target> | ||
|
||
<target name="full" depends="clean"> | ||
<copy todir="${local.deployment.basepath}/${appkey}"> | ||
<fileset dir="${dev.root}/target/${artifact}-${version}"> | ||
<exclude name="WEB-INF/**/*"/> | ||
</fileset> | ||
</copy> | ||
</target> | ||
|
||
<target name="update"> | ||
<copy todir="${local.deployment.basepath}/${appkey}"> | ||
<fileset dir="src/main/webapp"> | ||
</fileset> | ||
</copy> | ||
</target> | ||
</project> |
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,10 @@ | ||
# | ||
# GENERAL SETTINGS | ||
# | ||
artifact=alpaca | ||
version=1.0.1-SNAPSHOT | ||
appkey=alpaca | ||
dev.root=. | ||
|
||
# Local Deployment | ||
local.deployment.basepath=/ |
File renamed without changes.
File renamed without changes.
Oops, something went wrong.