diff --git a/docs/docs/host-setup.md b/docs/docs/host-setup.md new file mode 100644 index 0000000..109df71 --- /dev/null +++ b/docs/docs/host-setup.md @@ -0,0 +1,7 @@ +# title + +## section + +### detail + +blah blah blah \ No newline at end of file diff --git a/docs/docs/img/android-chrome-192x192.png b/docs/docs/img/android-chrome-192x192.png new file mode 100644 index 0000000..ae58f21 Binary files /dev/null and b/docs/docs/img/android-chrome-192x192.png differ diff --git a/docs/docs/img/apple-touch-icon.png b/docs/docs/img/apple-touch-icon.png new file mode 100644 index 0000000..cb6235b Binary files /dev/null and b/docs/docs/img/apple-touch-icon.png differ diff --git a/docs/docs/img/favicon-16x16.png b/docs/docs/img/favicon-16x16.png new file mode 100644 index 0000000..608aeec Binary files /dev/null and b/docs/docs/img/favicon-16x16.png differ diff --git a/docs/docs/img/favicon-32x32.png b/docs/docs/img/favicon-32x32.png new file mode 100644 index 0000000..930d9b3 Binary files /dev/null and b/docs/docs/img/favicon-32x32.png differ diff --git a/docs/docs/img/favicon.ico b/docs/docs/img/favicon.ico new file mode 100644 index 0000000..fe6674f Binary files /dev/null and b/docs/docs/img/favicon.ico differ diff --git a/docs/docs/img/logo.svg b/docs/docs/img/logo.svg new file mode 100644 index 0000000..63e9109 --- /dev/null +++ b/docs/docs/img/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/docs/img/mstile-150x150.png b/docs/docs/img/mstile-150x150.png new file mode 100644 index 0000000..d1f579b Binary files /dev/null and b/docs/docs/img/mstile-150x150.png differ diff --git a/docs/docs/img/safari-pinned-tab.svg b/docs/docs/img/safari-pinned-tab.svg new file mode 100644 index 0000000..63e9109 --- /dev/null +++ b/docs/docs/img/safari-pinned-tab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/docs/index.md b/docs/docs/index.md new file mode 100644 index 0000000..f50c7d9 --- /dev/null +++ b/docs/docs/index.md @@ -0,0 +1,4 @@ +# Welcome to Rockfish + +Rockfish is used to generate AyaNova licenses, manage cases, tech support email utilities etc. + diff --git a/docs/docs/license-extend-trial.md b/docs/docs/license-extend-trial.md new file mode 100644 index 0000000..109df71 --- /dev/null +++ b/docs/docs/license-extend-trial.md @@ -0,0 +1,7 @@ +# title + +## section + +### detail + +blah blah blah \ No newline at end of file diff --git a/docs/docs/license-perpetual.md b/docs/docs/license-perpetual.md new file mode 100644 index 0000000..109df71 --- /dev/null +++ b/docs/docs/license-perpetual.md @@ -0,0 +1,7 @@ +# title + +## section + +### detail + +blah blah blah \ No newline at end of file diff --git a/docs/docs/license-revoke.md b/docs/docs/license-revoke.md new file mode 100644 index 0000000..109df71 --- /dev/null +++ b/docs/docs/license-revoke.md @@ -0,0 +1,7 @@ +# title + +## section + +### detail + +blah blah blah \ No newline at end of file diff --git a/docs/docs/license-subscription.md b/docs/docs/license-subscription.md new file mode 100644 index 0000000..109df71 --- /dev/null +++ b/docs/docs/license-subscription.md @@ -0,0 +1,7 @@ +# title + +## section + +### detail + +blah blah blah \ No newline at end of file diff --git a/docs/docs/ui.md b/docs/docs/ui.md new file mode 100644 index 0000000..109df71 --- /dev/null +++ b/docs/docs/ui.md @@ -0,0 +1,7 @@ +# title + +## section + +### detail + +blah blah blah \ No newline at end of file diff --git a/docs/make-docs.bat b/docs/make-docs.bat new file mode 100644 index 0000000..551cc03 --- /dev/null +++ b/docs/make-docs.bat @@ -0,0 +1,3 @@ +cd C:\data\code\rockfish\docs +mkdocs build -s +pause diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml new file mode 100644 index 0000000..7ebd8f4 --- /dev/null +++ b/docs/mkdocs.yml @@ -0,0 +1,35 @@ +theme: + name: material + palette: + scheme: default + favicon: 'img/favicon.ico' + logo: 'img/logo.svg' + copyright: 'Copyright 2022 Ground Zero Tech-Works Inc.' +site_name: AyaNova Rockfish user manual +site_url: 'https://rockfish.ayanova.com/docs' +site_dir: '../wwwroot/docs' +strict: true +copyright: Copyright © 2022 Ground Zero Tech-Works Inc. REV-2022-08-29 +extra: + generator: false +# Extensions +markdown_extensions: + - pymdownx.highlight: + anchor_linenums: true + - pymdownx.superfences + - toc: + permalink: true + +nav: +- Home: 'index.md' +- Rockfish: + - 'UI': 'ui.md' +- Licensing: + - 'Perpetual': 'license-perpetual.md' + - 'Subscription': 'license-subscription.md' + - 'Extending trial manually': 'license-extend-trial.md' + - 'Revoking': 'license-revoke.md' +- Hosting: + - 'Setup': 'host-setup.md' + + diff --git a/docs/serve-docs.bat b/docs/serve-docs.bat new file mode 100644 index 0000000..7058d0c --- /dev/null +++ b/docs/serve-docs.bat @@ -0,0 +1,2 @@ +cd C:\data\code\rockfish\docs +mkdocs serve