I have a web app that works well in local but when uploading it to heroku the following came out in the logs
2017-01-01T00:30:57.874896+00:00 app[web.1]: Error: Failed to lookup view "notFound" in views directory "/app/views"
2017-01-01T00...
I found myself in need of setting environment variables in heroku for the deployment in production mode of my project.
The variables were the credentials for accessing the data base
const DB_HOST = process.env.DB_HOST || 'localhost';...
I'm trying to replicate an example to receive some data in real time to emulate adding a subject, but no matter how much you upload and / or change the form, that error still exists.
Error
POST https://nuevohorario.herokuapp.com/enviarAsign...
Hi, I have a project made with Python 3.5 and Django 1.10 and I would like to publish it in HEROKU but I see that it only supports Python 2.7, does anyone know if heroku supports Python 3.5?
I'm trying to deploy a Django app in Heroku. When I execute the git push heroku master command the following appears:
(uleague) ➜ pickapp git:(master) ✗ git push heroku master
Counting objects: 195, done.
Delta compression using up to 8...
The problem is that this code:
const Jimp = require('Jimp');
var map = [["⬜","⬜","u","⬜","⬜","⬜"],["⬜","⬜","⬜","⬜","⬜","⬜"],
["⬜","⬜","⬜","⬜","⬜","⬜"],["⬜","⬜","⬜","⬜","⬜","⬜"],
["⬜","⬜","⬜","⬜","⬜","⬜"],["⬜","⬜","⬜","...
I have a problem regarding django with heroku, I already perform the whole process in the correct way, but when loading the page I get the Application error view, I go to the logs, and I do not understand where the error is, or how to correct it...
I have a web app for which I use JPA with Hibernate 5.2.10.Final for the backend. The problem is that when it tries to generate the connection it gives me ExceptionInInitializerError: No persistence provider for EntitiyManager named de...
I am currently in charge of a system developed in NodeJS, which uses PostgreSQL as a database, and we access it using the Sequelize ORM, all this in the Heroku platform.
The problem I face is that, at a certain point, I tried to make a new de...