generated from coldbox-modules/module-template
-
-
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.
- Loading branch information
Showing
28 changed files
with
1,539 additions
and
233 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
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 |
---|---|---|
@@ -1,7 +1,2 @@ | ||
DB_HOST=127.0.0.1 | ||
DB_PORT=3306 | ||
DB_USER=root | ||
DB_PASSWORD=mysql | ||
DB_CLASS=com.mysql.cj.jdbc.Driver | ||
DB_BUNDLEVERSION=8.0.19 | ||
DB_BUNDLENAME=com.mysql.cj | ||
STRIPE_API_KEY= | ||
STRIPE_PUBLISHABLE_KEY= |
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
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
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 |
---|---|---|
|
@@ -6,42 +6,38 @@ | |
component { | ||
|
||
// Module Properties | ||
this.title = "@MODULE_NAME@"; | ||
this.author = "Ortus Solutions"; | ||
this.webURL = "https://www.ortussolutions.com"; | ||
this.description = "@MODULE_DESCRIPTION@"; | ||
this.version = "@build.version@[email protected]@"; | ||
this.title = "cbPayments"; | ||
this.author = "Ortus Solutions"; | ||
this.webURL = "https://www.ortussolutions.com"; | ||
this.description = "A module providing a common interface and API for processing payments and subscriptions'"; | ||
this.version = "@build.version@[email protected]@"; | ||
|
||
// Model Namespace | ||
this.modelNamespace = "@MODULE_SLUG@"; | ||
this.modelNamespace = "cbpayments"; | ||
|
||
// CF Mapping | ||
this.cfmapping = "@MODULE_SLUG@"; | ||
this.cfmapping = "cbpayments"; | ||
|
||
// Dependencies | ||
this.dependencies = []; | ||
this.dependencies = []; | ||
|
||
/** | ||
* Configure Module | ||
*/ | ||
function configure(){ | ||
settings = { | ||
|
||
}; | ||
settings = {}; | ||
} | ||
|
||
/** | ||
* Fired when the module is registered and activated. | ||
*/ | ||
function onLoad(){ | ||
|
||
} | ||
|
||
/** | ||
* Fired when the module is unregistered and unloaded | ||
*/ | ||
function onUnload(){ | ||
|
||
} | ||
|
||
} |
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 |
---|---|---|
@@ -1,54 +1,64 @@ | ||
{ | ||
"name" : "@MODULE_NAME@", | ||
"version" : "1.0.0", | ||
"location" : "https://downloads.ortussolutions.com/ortussolutions/coldbox-modules/@MODULE_SLUG@/@build.version@/@MODULE_SLUG@[email protected]@.zip", | ||
"author" : "Ortus Solutions <[email protected]>", | ||
"homepage" : "https://github.com/coldbox-modules/@MODULE_SLUG@", | ||
"documentation" : "https://github.com/coldbox-modules/@MODULE_SLUG@", | ||
"repository" : { "type" : "git", "url" : "https://github.com/coldbox-modules/@MODULE_SLUG@" }, | ||
"bugs" : "https://github.com/coldbox-modules/@MODULE_SLUG@", | ||
"shortDescription" : "Description goes here", | ||
"slug" : "@MODULE_SLUG@", | ||
"type" : "modules", | ||
"keywords":"", | ||
"license" : [ | ||
{ "type" : "Apache2", "url" : "http://www.apache.org/licenses/LICENSE-2.0.html" } | ||
], | ||
"contributors" : [ | ||
], | ||
"dependencies" :{ | ||
}, | ||
"devDependencies" :{ | ||
"commandbox-cfformat":"*", | ||
"name":"cbPayments", | ||
"version":"1.0.0", | ||
"location":"https://downloads.ortussolutions.com/ortussolutions/coldbox-modules/cbpayments/@build.version@/[email protected]@.zip", | ||
"author":"Ortus Solutions <[email protected]>", | ||
"homepage":"https://github.com/coldbox-modules/cbpayments", | ||
"documentation":"https://github.com/coldbox-modules/cbpayments", | ||
"repository":{ | ||
"type":"git", | ||
"url":"https://github.com/coldbox-modules/cbpayments" | ||
}, | ||
"bugs":"https://github.com/coldbox-modules/cbpayments", | ||
"shortDescription":"Description goes here", | ||
"slug":"cbpayments", | ||
"type":"modules", | ||
"keywords":"", | ||
"license":[ | ||
{ | ||
"type":"Apache2", | ||
"url":"http://www.apache.org/licenses/LICENSE-2.0.html" | ||
} | ||
], | ||
"contributors":[], | ||
"dependencies":{ | ||
"stripecfml":"^3.6.0", | ||
"mementifier":"^3.4.0+2" | ||
}, | ||
"devDependencies":{ | ||
"commandbox-cfformat":"*", | ||
"commandbox-docbox":"*", | ||
"commandbox-dotenv":"*", | ||
"commandbox-dotenv":"*", | ||
"commandbox-cfconfig":"*" | ||
}, | ||
"ignore":[ | ||
}, | ||
"ignore":[ | ||
"**/.*", | ||
"test-harness", | ||
"/server*.json" | ||
"/server*.json" | ||
], | ||
"scripts":{ | ||
"setupTemplate": "task run taskFile=build/SetupTemplate.cfc", | ||
"build:module":"task run taskFile=build/Build.cfc :projectName=`package show slug` :version=`package show version`", | ||
"build:docs":"task run taskFile=build/Build.cfc target=docs :projectName=`package show slug` :version=`package show version`", | ||
"install:dependencies":"install && cd test-harness && install", | ||
"release":"recipe build/release.boxr", | ||
"scripts":{ | ||
"build:module":"task run taskFile=build/Build.cfc :projectName=`package show slug` :version=`package show version`", | ||
"build:docs":"task run taskFile=build/Build.cfc target=docs :projectName=`package show slug` :version=`package show version`", | ||
"install:dependencies":"install --force && cd test-harness && install --force", | ||
"release":"recipe build/release.boxr", | ||
"format":"cfformat run helpers,models,test-harness/tests/,ModuleConfig.cfc --overwrite", | ||
"format:watch":"cfformat watch helpers,models,test-harness/tests/,ModuleConfig.cfc ./.cfformat.json", | ||
"format:check":"cfformat check helpers,models,test-harness/tests/,ModuleConfig.cfc ./.cfformat.json", | ||
"start:lucee" : "server start [email protected]", | ||
"start:2018" : "server start [email protected]", | ||
"start:2021" : "server start [email protected]", | ||
"stop:lucee" : "server stop [email protected]", | ||
"stop:2018" : "server stop [email protected]", | ||
"stop:2021" : "server stop [email protected]", | ||
"logs:lucee" : "server log [email protected] --follow", | ||
"logs:2018" : "server log [email protected] --follow", | ||
"logs:2021" : "server log [email protected] --follow" | ||
"start:lucee":"server start [email protected]", | ||
"start:2018":"server start [email protected]", | ||
"start:2021":"server start [email protected]", | ||
"stop:lucee":"server stop [email protected]", | ||
"stop:2018":"server stop [email protected]", | ||
"stop:2021":"server stop [email protected]", | ||
"logs:lucee":"server log [email protected] --follow", | ||
"logs:2018":"server log [email protected] --follow", | ||
"logs:2021":"server log [email protected] --follow" | ||
}, | ||
"testbox":{ | ||
"testbox":{ | ||
"runner":"http://localhost:60299/tests/runner.cfm" | ||
}, | ||
"installPaths":{ | ||
"stripecfml":"modules/stripecfml/", | ||
"mementifier":"modules/mementifier/" | ||
} | ||
} |
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
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
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,8 @@ | ||
/** | ||
* A cool processor/AuthorizeNET entity | ||
*/ | ||
component extends="BaseProcessor" { | ||
|
||
|
||
} | ||
|
Oops, something went wrong.