From 58e3fbfc6ab86e9b6fd47618e14e37238cafa638 Mon Sep 17 00:00:00 2001 From: Ashish Trivedi Date: Sun, 19 Jul 2020 16:19:01 +0530 Subject: [PATCH] #1321 Added gitignore --- transaction-script/.gitignore | 2 + transaction-script/Readme.md | 49 +++++++++++++++++++ .../transactionscript/App.java | 8 +++ 3 files changed, 59 insertions(+) create mode 100644 transaction-script/.gitignore create mode 100644 transaction-script/src/main/java/com/ashishtrivedi16/transactionscript/App.java diff --git a/transaction-script/.gitignore b/transaction-script/.gitignore new file mode 100644 index 000000000..431845ed0 --- /dev/null +++ b/transaction-script/.gitignore @@ -0,0 +1,2 @@ +/target/ +.idea/ diff --git a/transaction-script/Readme.md b/transaction-script/Readme.md index e69de29bb..f378e5672 100644 --- a/transaction-script/Readme.md +++ b/transaction-script/Readme.md @@ -0,0 +1,49 @@ +--- # this is so called 'Yaml Front Matter', read up on it here: http://jekyllrb.com/docs/frontmatter/ +layout: pattern # layout must always be pattern +title: Best Pattern Ever # the properly formatted title +folder: best-pattern-ever # the folder name in which this pattern lies +permalink: /patterns/best-pattern-ever/ # the permalink to the pattern, to keep this uniform please stick to /patterns/FOLDER/ +description: # short meta description that shows in Google search results + +# both categories and tags are Yaml Lists +# you can either just pick one or write a list with '-'s +# usable categories and tags are listed here: https://github.com/iluwatar/java-design-patterns/blob/gh-pages/_config.yml +categories: creational # categories of the pattern +tags: # tags of the pattern + - best + - ever + - awesome +--- + +## Name / classification +... + +## Also known as +... + +## Intent +... + +## Explanation +... + +## Class diagram +... + +## Applicability +... + +## Tutorials +... + +## Known uses +... + +## Consequences (the good and the bad, add criticism here) +... + +## Related patterns +... + +## Credits +... diff --git a/transaction-script/src/main/java/com/ashishtrivedi16/transactionscript/App.java b/transaction-script/src/main/java/com/ashishtrivedi16/transactionscript/App.java new file mode 100644 index 000000000..63aae61b1 --- /dev/null +++ b/transaction-script/src/main/java/com/ashishtrivedi16/transactionscript/App.java @@ -0,0 +1,8 @@ +package com.ashishtrivedi16.transactionscript; + +public class App { + + public static void main(String[] args) { + System.out.println("Hello, world!"); + } +}