Questions tagged [heroku-ci]

86 questions
0
votes
1 answer

Spring Boot error when deployed on Heroku

I am having trouble deploying my app on Heroku. It builds successfully on localhost without any errror. It even builds successfully when I do mvn clean install or mvn clean package. This is my pom.xml file:
brvim
  • 1
  • 3
0
votes
1 answer

'heroku' is not recognized as an internal or external command

Actually I am trying to host my site live on Heroku and I downloaded Heroku cli also but when i am trying to run any Heroku command it didn't work. I have set environment variable also. help me to find the solution. I used Techstack as: python,…
0
votes
1 answer

Herokuproblem pushing problem: error: failed to push some refs to 'https://git.heroku.com/wwwwwww.git'

I am trying to push my Rails app to Heroku but it is showing me this error again and again. What is the problem? Enumerating objects: 140, done. Counting objects: 100% (140/140), done. Delta compression using up to 2 threads Compressing objects:…
bombom
  • 107
  • 2
  • 12
0
votes
2 answers

In Dyno Heroku PostgreSQL is not reponding

I've been using In Dyno Heroku PostgreSQL for a while, but for some reason, it has stopped responding a week ago. I haven't changed anything and even when running old commits it still doesn't respond. And by not responding I mean that when I am…
0
votes
1 answer

Heroku CI/CD with npm private packages

Anyone have any ideas what the issue here is, it seems to be evaluating my npm registry to False. I am installing packages from a private scope. I have added an .npmrc file as well and…
Pari Baker
  • 696
  • 4
  • 19
0
votes
1 answer

Heroku CI Integration

As I attempt to run the Heroku CI tests, I find that I get a <404> request when I use the request to peek into my webserver's url: resp = requests.post((url), json=dict(username = xxx, password = xxx), ) I've verified that all…
0
votes
1 answer

How to deploy a React JS build folder to Heroku Server from Azure release pipelines

I am actually developing a React js application and pushing it to Azure Github (dev.azure). To automate the builds, I created pipelines and to release the build I created a release pipeline. I want to host this application on heroku app server. I…
0
votes
1 answer

Deploy server to heroku both dev and prod

I have a Heroku app ready and working, it is connected to my github repo, and I have a Procfile on my Node.js (NestJS to be precise) server project. At the moment what happens is every time I make a push to my repo project the heroku deploys the…
Gabi Gatzki
  • 83
  • 1
  • 8
0
votes
1 answer

Heroku CI with pytest-django fails - module "doesn't declare an explicit app_label"

I've deployed a Django app and would like to get Heroku CI setup. I have a suite of tests that run locally. On heroku CI test setup succeeds and then the test runner fails with the following error log…
John
  • 949
  • 1
  • 9
  • 20
0
votes
1 answer

Getting Error when running Django Test on Heroku CI

I am using DRF and the tests are written for the APIs. I want to run those test on heroku and also use the CI in my pipeline for the development environment. When default SQLlite db is used in the config, the error that I am getting - Normally…
paperball
  • 195
  • 1
  • 13
0
votes
2 answers

Nginx did not execute php file but it render the raw text

I was trying to run the container in Heroku when I open my app it displays the raw file of my PHP FROM ubuntu:latest ENV PORT=80 [....] COPY default.conf.template /etc/nginx/conf.d/default.conf.template COPY nginx.conf /etc/nginx/nginx.conf …
jemz
  • 4,987
  • 18
  • 62
  • 102
0
votes
1 answer

ERROR in scripts. xxxjs from Terser when building angular when building angular project to deploy to heroku

I am looking to deploy my code to heroku, but i was always getting the error while building my angular application. I have tried using below commands to build my angular project. 'ng build --prod','ng build --aot --prod' Both the commands are…
kalyan veenam
  • 73
  • 2
  • 9
0
votes
0 answers

deploying java web app to heroku: "Could not find or load main class"

I followed this instruction: https://devcenter.heroku.com/articles/deploying-java to deploy a java web app to heroku. The content of my Procfile is the following: web: java $JAVA_OPTS -cp target/classes:target/dependency/* Optimizer (Optimizer is…
steady_progress
  • 3,311
  • 10
  • 31
  • 62
0
votes
1 answer

Unable to add npm modules on Heroku in NodeJS app

I'm Hosting a NodeJS application on Heroku, It renames the file on sFTP server. Please find below my app.js code. if I remove ssh2-sftp-client npm modules, everything is working fine. but then I'm unable to do sFTP connection. I'm very new to Heroku…
Sunil Nagargoje
  • 11
  • 1
  • 1
  • 7
0
votes
1 answer

How to configure heroku ci for rails app with postgis?

My rails 4 app uses postgis with the activerecord-postgis-adapter. I'm attempting to use Heroku CI. The ci run fails when it is loading the database structure when it reaches a geometry column description in the schema.rb file. -----> Preparing test…