https://github.com/dipu-bd/spring-vue-template
Combine the power of spring boot with awesome vue for your web apps
https://github.com/dipu-bd/spring-vue-template
Last synced: 4 months ago
JSON representation
Combine the power of spring boot with awesome vue for your web apps
- Host: GitHub
- URL: https://github.com/dipu-bd/spring-vue-template
- Owner: dipu-bd
- License: apache-2.0
- Created: 2020-08-21T08:10:42.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-08-21T14:24:05.000Z (almost 5 years ago)
- Last Synced: 2025-01-31T23:28:10.991Z (5 months ago)
- Language: Vue
- Size: 281 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# spring-vue-template
Combine the power of spring boot with awesome vue for your web apps
## Deployment
```
$ ./gradlew publish
# It will compile *.tar file inside dist/ folder.
# It first builds the web project and copy static resources over to api project.
```## Development
Both api and web project should be run separately.
```
$ ./gradlew bootRun
# To start the api server$ ./gradlew bootWeb
# To start the web server in development mode
```You can also run it using a single command.
```
$ ./gradlew bootRun bootWeb --parallel
# Run both tasks in parallel
```