GitXplorerGitXplorer
m

GenieOnHeroku

public
5 stars
15 forks
1 issues

Commits

List of commits on branch master.
Verified
3ec3efd89ba896b70323bcf659f910bd41e5c077

Add link to GUI guide

mmilesfrain committed 4 years ago
Unverified
7a981b9710ab7045814cfaa5394303f3d9dbac3f

using buildpack strategy

mmilesfrain committed 5 years ago
Unverified
6f918a93fef350c6ba817a21fbce1bbacdd0a9b4

Attempting pre-compile, same results

mmilesfrain committed 5 years ago
Verified
4f416b50a8952a5c814fdced14f2a21ded4a3985

steps to reproduce

mmilesfrain committed 5 years ago
Unverified
163c603bc5d60e1662485db029107e1223d1e0c3

initial commit with Heroku error

mmilesfrain committed 5 years ago

README

The README file for this repository.

This project hosts a minimal Genie.jl web app on Heroku using a julia buildpack.

Steps:

git clone https://github.com/milesfrain/GenieOnHeroku.git
cd GenieOnHeroku
HEROKU_APP_NAME=my-app-name
heroku create $HEROKU_APP_NAME --buildpack https://github.com/Optomatica/heroku-buildpack-julia.git
git push heroku master
heroku open -a $HEROKU_APP_NAME
heroku logs -tail -a $HEROKU_APP_NAME

I was previously attempting to host on heroku by uploading docker containers, but encountered lots of issues. Moved that troubleshooting effort to a separate branch in this repo.

GUI Guide (no terminal)

Here's a guide on how to deploy to Heroku without any of the above CLI commands. Thanks to @fonsp for the writeup.