Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gastaldi/talented-need
Generated by the Red Hat Developer Launcher (https://developers.redhat.com/launch)
https://github.com/gastaldi/talented-need
Last synced: 5 days ago
JSON representation
Generated by the Red Hat Developer Launcher (https://developers.redhat.com/launch)
- Host: GitHub
- URL: https://github.com/gastaldi/talented-need
- Owner: gastaldi
- License: apache-2.0
- Created: 2019-04-18T14:40:56.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-04-18T14:41:03.000Z (over 5 years ago)
- Last Synced: 2024-11-08T09:47:37.587Z (about 2 months ago)
- Language: Shell
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# platform-quarkus
Created by the Cloud App Generator
Now that the application has been generated it can be deployed in the currently active project on OpenShift by going into the
project folder and running:```
$ ./gap deploy
```Now the only thing that is left to do is push the project's code to OpenShift to be run. There are two ways of doing that,
one is by first building the project yourself locally and pushing the resulting binary, like this:```
$ ./gap build
$ ./gap push --binary
```In most cases you can leave out the `--binary` flag because that's the default if a binary is available. In case you want
to push the sources and have the project be built on OpenShift you can do the following:```
$ ./gap push --source
```This is also the default when no binary is available and you omit the `--source` flag.
Building
=========The application can be built by running:
```bash
$ mvn clean package
```