Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gastaldi/vertx-app
https://github.com/gastaldi/vertx-app
Last synced: 20 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/gastaldi/vertx-app
- Owner: gastaldi
- License: apache-2.0
- Created: 2018-11-13T13:48:39.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-14T09:58:39.000Z (about 6 years ago)
- Last Synced: 2024-11-08T09:47:36.268Z (2 months ago)
- Language: HTML
- Homepage:
- Size: 119 KB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
http://appdev.openshift.io/docs/vertx-runtime.html#mission-crud-vertx
## Running the application locally
To run the application locally, you need to start a local PosgreSQL instance. For example, you can use Docker as follows:
```bash
docker run --name some-postgres -e POSTGRES_USER=user -e POSTGRES_PASSWORD=password -e POSTGRES_DB=my_data -p 5432:5432 -d postgres
```By default (for local development) the application uses:
* `localhost` as host
* `5432` as port
* `user` as username
* `password` as password
* `my_data` as database nameThen run the application using: `mvn compile vertx:run`. The application runs on: http://localhost:8080.