https://github.com/r-n/thriftchatapptestserverheroku
Chat App built using thrift for android. Heroku Java Server
https://github.com/r-n/thriftchatapptestserverheroku
chat chat-application database gradle heroku im java postgresql server thrift
Last synced: 3 months ago
JSON representation
Chat App built using thrift for android. Heroku Java Server
- Host: GitHub
- URL: https://github.com/r-n/thriftchatapptestserverheroku
- Owner: R-N
- License: mit
- Created: 2018-03-29T16:33:22.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-04-17T13:27:21.000Z (about 4 years ago)
- Last Synced: 2025-07-04T01:37:45.282Z (12 months ago)
- Topics: chat, chat-application, database, gradle, heroku, im, java, postgresql, server, thrift
- Language: Java
- Homepage:
- Size: 101 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gradle-getting-started
A barebones Gradle app, which can easily be deployed to Heroku.
This application support the [Getting Started with Gradle on Heroku](https://devcenter.heroku.com/articles/getting-started-with-gradle-on-heroku) article - check it out.
## Running Locally
Make sure you have Java installed. Also, install the [Heroku Toolbelt](https://toolbelt.heroku.com/).
```sh
$ git clone https://github.com/heroku/gradle-getting-started.git
$ cd gradle-getting-started
$ ./gradlew stage
$ heroku local web
```
Your app should now be running on [localhost:5000](http://localhost:5000/).
If you're going to use a database, ensure you have a local `.env` file that reads something like this:
```
DATABASE_URL=postgres://localhost:5432/gradle_database_name
```
## Deploying to Heroku
```sh
$ heroku create
$ git push heroku master
$ heroku open
```
## Documentation
For more information about using Java on Heroku, see these Dev Center articles:
- [Java on Heroku](https://devcenter.heroku.com/categories/java)