From 4967eb39955df8e161d696842547349050d1e552 Mon Sep 17 00:00:00 2001 From: Morgan Aubert Date: Thu, 15 Feb 2024 21:56:26 -0500 Subject: [PATCH] Fix position of config/routes.cr requirement in generated projects --- .../cli/manage/command/new/templates/project/src/project.cr.ecr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/marten/cli/manage/command/new/templates/project/src/project.cr.ecr b/src/marten/cli/manage/command/new/templates/project/src/project.cr.ecr index 30e940b8..d3cea99e 100644 --- a/src/marten/cli/manage/command/new/templates/project/src/project.cr.ecr +++ b/src/marten/cli/manage/command/new/templates/project/src/project.cr.ecr @@ -6,10 +6,10 @@ require "marten_auth" require "sqlite3" # Configuration requirements. -require "../config/routes" require "../config/settings/base" require "../config/settings/**" require "../config/initializers/**" +require "../config/routes" # Project requirements. <%- if context.targets_auth? -%>