Questions tagged [heroku-ci]

86 questions
1
vote
1 answer

Django App on Heroku :Application crashed

guys i tried to add django to heruko but when i tried to access my my site through the given domain i have faced an issue as Application error here is my error log kuapp.com request_id=3226d7fe-a42e-4c41-8618-74f00206f5af fwd="103.49.121.34"…
user7671217
1
vote
1 answer

Exclude files to avoid triggering Heroku CI

Currently my Heroku CI tests are triggered on all git push to master branch at Github. Is it possible to avoid triggering CI tests if specific files are being pushed, such as README.md?
Ismar Slomic
  • 5,315
  • 6
  • 44
  • 63
1
vote
1 answer

Heroku CI test app deletes /spec directory

For some unexplainable reason it appears as though when Heroku CI is building the app in the test environment it deletes my /spec directory. The error below says, require': cannot load such file -- spec_helper (LoadError) When I use the Heroku…
Nick Res
  • 2,154
  • 5
  • 30
  • 48
1
vote
1 answer

"Error detecting buildpack" during Heroku CI Test Setup

All, Attempting to use Heroku's new-ish Continuous Integration service but it doesn't appear to want to play well with its own framework. I've setup my Heroku Pipeline as outlined in the CI article:…
Will Lovett
  • 1,241
  • 3
  • 18
  • 35
0
votes
0 answers

How to use routes in heroku

I have a react app that containing a moltiple stores I'm using the store name in the url to get store data and redirect to signup page and it's working locally but after deploying it to heroku when add store name to heroku app url return the store…
0
votes
0 answers

Heroku Deployment Issue: App Deploys Empty, No Content Rendered

I'm facing an issue with deploying my Django application on Heroku. The deployment process completes without any errors, but when I access the deployed app, it appears empty with no content rendered. However, when I run the application locally,…
Yasin
  • 1
0
votes
0 answers

Katalon + Heroku CI

I’m trying to integrate Heroku CI with Kalalon Studio for runtime Test suites execution before deploying to production. According to Katalon Docs (https://docs.katalon.com/docs/execute/cicd-integrations/cicd-integration-overview), Heroku CI is…
0
votes
0 answers

To create a review app, the pipeline owner must first authorize additional charges

I keep on getting an error with message whenever my heroku review app tries to build. To create a review app, the pipeline owner must first authorize additional charges I have already configured my buildpacks, addons and image in the app.json. Why…
Mighty
  • 53
  • 6
0
votes
2 answers

Circle Ci with Heroku orb giving "no workflow" error

I want to use a circle ci yaml pipeline to deploy to a Heroku App. The yaml file I have right now is: version: 2.1 orbs: heroku: circleci/heroku@0.0.10 jobs: heroku_deploy_review_app: executor: heroku/default steps: - checkout …
devgirl
  • 671
  • 3
  • 16
  • 39
0
votes
0 answers

How to properly set-up app.json for Heroku CI Pipeline tests for Laravel app?

Currently, I'm using Heroku's app.json for testing Pipeline in this manner: { "environments": { "test": { "buildpacks": [ { "url": "heroku/php" }, { "url":…
Banik
  • 320
  • 4
  • 9
0
votes
0 answers

What does Heroku resize hobby mean command line?

I use a free account with custom domain (Card verified) . I was going through ssl certificates and pasted two codes from heroku site to my app. Later I saw console output shows 7$/mo message. heroku ps:resize web=hobby This was the command. Did I…
DevS
  • 1
0
votes
0 answers

Jest Puppeteer E2E tests pass locally but time out Heroku

Writing some e2e tests using Jest and Puppeteer. These tests pass locally but they fail on Heroku CI (the beforeAll hook times out after 15 seconds). I added some console.log statements and figured out that the beforeAll hook is timing out in the…
0
votes
0 answers

How can I execute a SQL Script in Heroku Postgres using yml file?

Today I have a .NET 6 application that uses the Code First approach to the database, where I generate migrations and put my code on GitHub. I use GitHub Actions to deploy my application using a .yml file: # Docs for the Azure Web Apps Deploy…
0
votes
1 answer

Issue with deploying a VueJS app on heroku without backend

I've been trying to deploy a basic VueJS app to Heroku without any backend. I've introduced the additional code provided…
0
votes
1 answer

Host heroku changes with each code loaded or when reloading the service

I have an application on heroku and I try to connect and fetch information from a remote database. I need to give permission on that remote database, informing the host, but every time I load new code in the heroku app, with heroku cli, or when it…