From 8d1791ba312e9a4e52346842311b7b590a15d479 Mon Sep 17 00:00:00 2001 From: Tiago Firmino Date: Wed, 18 Oct 2023 18:09:20 +0000 Subject: [PATCH] add Procfile and project.toml --- Procfile | 1 + project.toml | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 Procfile create mode 100644 project.toml diff --git a/Procfile b/Procfile new file mode 100644 index 0000000..622f195 --- /dev/null +++ b/Procfile @@ -0,0 +1 @@ +web: bundle exec jekyll serve \ No newline at end of file diff --git a/project.toml b/project.toml new file mode 100644 index 0000000..1183233 --- /dev/null +++ b/project.toml @@ -0,0 +1,13 @@ +[project] +id = "com.veezor.static-site" +name = "Static Site" +version = "1.0" + +[build] +builder = "heroku/buildpacks:18" + +[[build.buildpacks]] +uri = "heroku/ruby" + +[[build.buildpacks]] +uri = "heroku/procfile@1.0.2" \ No newline at end of file