-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from fabrix-app/v1.5
[chore] add archetype
- Loading branch information
Showing
4 changed files
with
40 additions
and
25 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/** | ||
* Router Configuration | ||
* | ||
*/ | ||
export const router = { | ||
// Default Prefix to add to all routes where a prefix is not specified | ||
prefix: null, | ||
// Order in which the routes are listed (Some webservers require specific ordering) | ||
sortOrder: 'asc', | ||
// Debug router setup | ||
debug: false | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/** | ||
* Routes for webservers and more | ||
* @link {{}} | ||
*/ | ||
/** | ||
* Examples: | ||
* '/get', { | ||
* 'GET': 'RouterController.get' | ||
* } | ||
*/ | ||
export const routes = {} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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