Hello, create a Springboot project in STS and within a folder called frontend that contains the part with vue
I was able to host my CRUD project in heroku, but with some problems:
1) so that the page runs, I had to pass the generated files in / dist to the public folder, and this in turn put it with the rest of the files of the SpringBoot part, just there I was able to visualize everything in heroku , but I lost the part of css that worked when I ran locally.
2) To the project I did it with MySQL, I had to change it to postgresql for heroku and it does not do any operation, so I modified pom.xml adding the dependencies of postgresql and aplication.properties (do I have to pass the parameters to it as with MySQL? what do you see in credential view in heroku?)
spring.datasource.url=${JDBC_DATABASE_URL}
spring.datasource.username=${JDBC_DATABASE_USERNAME}
spring.datasource.password=${JDBC_DATABASE_PASSWORD}
spring.jpa.show-sql=false
spring.jpa.generate-ddl=true
spring.jpa.hibernate.ddl-auto=update
the github repository link
thanks.
and a heroku capture if someone can help me and need me to tell you a little more, there's no problem, greetings and thanks.