Skip to content
This repository has been archived by the owner on Dec 25, 2022. It is now read-only.

Commit

Permalink
Merge pull request #138 from tubone24/submodule
Browse files Browse the repository at this point in the history
Submodule
  • Loading branch information
tubone24 committed Aug 2, 2019
2 parents fb9ffeb + 8ac57fd commit 2d802dd
Show file tree
Hide file tree
Showing 9 changed files with 102 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@
[submodule "examples/ebook-homebrew-vue-typescript-client"]
path = examples/ebook-homebrew-vue-typescript-client
url = https://github.com/tubone24/ebook-homebrew-vue-typescript-client.git
[submodule "examples/ebook-homebrew-rust-client"]
path = examples/ebook-homebrew-rust-client
url = https://github.com/tubone24/ebook-homebrew-rust-client
5 changes: 5 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,12 @@ Using Vue.js, Call REST API.

`ebook-homebrew-vue-typescript-client <https://github.com/tubone24/ebook-homebrew-vue-typescript-client>`_

Rust Command Line Client
------------------------

Using Rust, Call REST API by CLI

`ebook-homebrew-rust-client <https://github.com/tubone24/ebook-homebrew-rust-client>`_

Deploy API to Heroku
====================
Expand Down
30 changes: 30 additions & 0 deletions doc_src/client.rst
Original file line number Diff line number Diff line change
Expand Up @@ -100,3 +100,33 @@ Install Node.js and NPM and Execute it::
Run App and Enjoy!

.. image:: vue-sample.gif

Command Line Tool using Rust
^^^^^^^^^^^^^^^^^^^^^^^^^^^^

If you want to use more speedy CLI, Use Rust CLI

Install **Rust** and Execute commands below. ::

$ cd examples/ebook-homebrew-rust-client/
$ cargo run
$ cd target/debug
$ ./ebook-homebrew-rust-client -h

ebook_homebrew_rust_client 0.1.0
tubone24 <tubo.yyyuuu@gmail.com>
Ebook-homebrew Command Line Tools

USAGE:
ebook-homebrew-rust-client.exe [SUBCOMMAND]

FLAGS:
-v, --version CLI version
-h, --help Prints help information

SUBCOMMANDS:
status check server status
upload upload image files
convert convert image files to PDF
download download converted PDF file
help Prints this message or the help of the given subcommand(s)
30 changes: 30 additions & 0 deletions docs/_sources/client.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -100,3 +100,33 @@ Install Node.js and NPM and Execute it::
Run App and Enjoy!

.. image:: vue-sample.gif

Command Line Tool using Rust
^^^^^^^^^^^^^^^^^^^^^^^^^^^^

If you want to use more speedy CLI, Use Rust CLI

Install **Rust** and Execute commands below. ::

$ cd examples/ebook-homebrew-rust-client/
$ cargo run
$ cd target/debug
$ ./ebook-homebrew-rust-client -h

ebook_homebrew_rust_client 0.1.0
tubone24 <tubo.yyyuuu@gmail.com>
Ebook-homebrew Command Line Tools

USAGE:
ebook-homebrew-rust-client.exe [SUBCOMMAND]

FLAGS:
-v, --version CLI version
-h, --help Prints help information

SUBCOMMANDS:
status check server status
upload upload image files
convert convert image files to PDF
download download converted PDF file
help Prints this message or the help of the given subcommand(s)
30 changes: 30 additions & 0 deletions docs/client.html
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@
<li class="toctree-l3"><a class="reference internal" href="#command-line-tools-with-using-rest-api">Command Line Tools with using Rest API</a></li>
<li class="toctree-l3"><a class="reference internal" href="#android-app">Android App</a></li>
<li class="toctree-l3"><a class="reference internal" href="#web-front-app-vue-js">Web Front App (Vue.js)</a></li>
<li class="toctree-l3"><a class="reference internal" href="#command-line-tool-using-rust">Command Line Tool using Rust</a></li>
</ul>
</li>
</ul>
Expand Down Expand Up @@ -248,6 +249,35 @@ <h3>Web Front App (Vue.js)<a class="headerlink" href="#web-front-app-vue-js" tit
<p>Run App and Enjoy!</p>
<img alt="_images/vue-sample.gif" src="_images/vue-sample.gif" />
</div>
<div class="section" id="command-line-tool-using-rust">
<h3>Command Line Tool using Rust<a class="headerlink" href="#command-line-tool-using-rust" title="Permalink to this headline"></a></h3>
<p>If you want to use more speedy CLI, Use Rust CLI</p>
<p>Install <strong>Rust</strong> and Execute commands below.</p>
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span>$ cd examples/ebook-homebrew-rust-client/
$ cargo run
$ cd target/debug
$ ./ebook-homebrew-rust-client -h

ebook_homebrew_rust_client 0.1.0
tubone24 &lt;tubo.yyyuuu@gmail.com&gt;
Ebook-homebrew Command Line Tools

USAGE:
ebook-homebrew-rust-client.exe [SUBCOMMAND]

FLAGS:
-v, --version CLI version
-h, --help Prints help information

SUBCOMMANDS:
status check server status
upload upload image files
convert convert image files to PDF
download download converted PDF file
help Prints this message or the help of the given subcommand(s)
</pre></div>
</div>
</div>
</div>
</div>

Expand Down
1 change: 1 addition & 0 deletions docs/ebook_homebrew.utils.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@
<li class="toctree-l1"><a class="reference internal" href="overview.html">Overview</a></li>
<li class="toctree-l1"><a class="reference internal" href="howtouse.html">How to use</a></li>
<li class="toctree-l1"><a class="reference internal" href="restapi.html">Rest API Reference</a></li>
<li class="toctree-l1"><a class="reference internal" href="client.html">Client</a></li>
<li class="toctree-l1"><a class="reference internal" href="deploy2heroku.html">Deploy to Heroku</a></li>
<li class="toctree-l1"><a class="reference internal" href="releasenotes/index.html">Release Notes</a></li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion docs/searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion examples/ebook-homebrew-android-app
1 change: 1 addition & 0 deletions examples/ebook-homebrew-rust-client

0 comments on commit 2d802dd

Please sign in to comment.