https://github.com/making/elm-spring-boot-blank
Blank multi project for Spring Boot + Elm
https://github.com/making/elm-spring-boot-blank
Last synced: 12 months ago
JSON representation
Blank multi project for Spring Boot + Elm
- Host: GitHub
- URL: https://github.com/making/elm-spring-boot-blank
- Owner: making
- Created: 2019-07-07T08:30:55.000Z (almost 7 years ago)
- Default Branch: develop
- Last Pushed: 2020-12-14T20:18:57.000Z (over 5 years ago)
- Last Synced: 2025-04-06T07:43:11.574Z (about 1 year ago)
- Language: Java
- Size: 71.3 KB
- Stars: 7
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Blank multi project for Spring Boot + Elm
## How to use
### Use Release version
```
mvn archetype:generate\
-DarchetypeGroupId=am.ik.archetype\
-DarchetypeArtifactId=elm-spring-boot-blank-archetype\
-DarchetypeVersion=0.0.2
```
### Use Snapshot version
```
mvn -U org.apache.maven.plugins:maven-archetype-plugin:2.2:generate \
-DarchetypeRepository=https://oss.sonatype.org/content/repositories/snapshots \
-DarchetypeGroupId=am.ik.archetype\
-DarchetypeArtifactId=elm-spring-boot-blank-archetype\
-DarchetypeVersion=0.0.3-SNAPSHOT
```
## Example
```
mvn archetype:generate\
-DarchetypeGroupId=am.ik.archetype\
-DarchetypeArtifactId=elm-spring-boot-blank-archetype\
-DarchetypeVersion=0.0.2\
-DgroupId=com.example\
-DartifactId=demo-app\
-Dversion=1.0.0-SNAPSHOT\
-B
cd demo-app
chmod +x ./mvnw*
./mvnw clean package
java -jar demo-app-backend/target/demo-app-backend-1.0.0-SNAPSHOT.jar
```

Deploy to Cloud Foundry:
```
cf push
```
demo: [https://demo-app.apps.pcfone.io](https://demo-app.apps.pcfone.io)