This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> Configure project : | |
DGS CodeGen added [com.netflix.graphql.dgs.codegen:graphql-dgs-codegen-client-core:5.0.6] to the implementation dependencies. | |
> Task :flywayMigrate | |
Migration of schema `booksapi` to version "010 - RENAME PUBLISHER BOOK CONSTRAINTS" failed! Please restore backups and roll back database and code! | |
> Task :flywayMigrate FAILED | |
FAILURE: Build failed with an exception. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2021-08-30 13:00:29.032 INFO 15385 --- [ main] o.f.c.internal.license.VersionPrinter : Flyway Community Edition 7.5.4 by Redgate | |
2021-08-30 13:00:29.037 INFO 15385 --- [ main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting... | |
2021-08-30 13:00:29.418 INFO 15385 --- [ main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed. | |
2021-08-30 13:00:29.449 INFO 15385 --- [ main] o.f.c.i.database.base.DatabaseType : Database: jdbc:mysql://localhost:3307/booksapi (MySQL 8.0) | |
2021-08-30 13:00:29.582 WARN 15385 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'flywayInitializer' defined in class path resource [org/springframework/boot/autoconfigure/flyway/FlywayAutoConfiguration$FlywayConfiguration.class]: Invocation of init method failed; nested |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# npm install -g webpack | |
//Javascript module loader | |
var debug = process.env.NODE_ENV !== "production"; | |
var webpack = require('webpack'); | |
module.exports = { | |
context: __dirname, //source code directory | |
devtool: debug ? "inline-sourcemap" : null, //inline-sourcemap only in non-production | |
entry: "./js/scripts.js", //entry point |