https://github.com/codedrinker/wein-server
WeIn Server, a date tool for WeChat mini program
https://github.com/codedrinker/wein-server
Last synced: 2 months ago
JSON representation
WeIn Server, a date tool for WeChat mini program
- Host: GitHub
- URL: https://github.com/codedrinker/wein-server
- Owner: codedrinker
- License: mit
- Created: 2017-10-06T02:24:10.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-06T02:27:39.000Z (over 7 years ago)
- Last Synced: 2025-01-07T14:12:10.411Z (4 months ago)
- Language: Java
- Size: 133 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# java-getting-started
A barebones Java app, which can easily be deployed to Heroku.
This application supports the [Getting Started with Java on Heroku](https://devcenter.heroku.com/articles/getting-started-with-java) article - check it out.
[](https://heroku.com/deploy)
## Running Locally
Make sure you have Java and Maven installed. Also, install the [Heroku CLI](https://cli.heroku.com/).
```sh
$ git clone https://github.com/heroku/java-getting-started.git
$ cd java-getting-started
$ mvn install
$ heroku local:start
```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/java_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)