-
-
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
1 parent
0f6d4e3
commit 0d39c83
Showing
38 changed files
with
520 additions
and
13 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 |
---|---|---|
|
@@ -104,3 +104,4 @@ coverage.* | |
setup.py | ||
!/niapi/lib/ | ||
!/tests/**/lib/ | ||
!/docs/**/lib/ |
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 @@ | ||
==== | ||
asgi | ||
==== | ||
|
||
Entry point for ASGI-compatible application. | ||
|
||
.. automodule:: niapi.asgi | ||
:members: |
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,16 @@ | ||
=== | ||
cli | ||
=== | ||
|
||
Command line interface for the application. | ||
|
||
CLI Usage | ||
--------- | ||
|
||
.. click:: niapi.cli:run_all_app | ||
:prog: run_all_app | ||
:nested: full | ||
|
||
.. click:: niapi.cli:run_app | ||
:prog: app | ||
:nested: full |
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 @@ | ||
=========== | ||
controllers | ||
=========== | ||
|
||
Controllers for the application calculator. | ||
|
||
.. automodule:: niapi.domain.calculator.controllers | ||
:members: |
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 @@ | ||
========== | ||
calculator | ||
========== | ||
|
||
.. toctree:: | ||
:titlesonly: | ||
:caption: NIAPI Calculator Domain API Reference | ||
:glob: | ||
:hidden: | ||
|
||
* |
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 @@ | ||
====== | ||
schema | ||
====== | ||
|
||
Schema for the application calculator. | ||
|
||
.. automodule:: niapi.domain.calculator.schema | ||
:members: |
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 @@ | ||
================== | ||
Domain Initializer | ||
================== | ||
|
||
Initializes the domain module. | ||
|
||
.. automodule:: niapi.domain.__init__ | ||
:members: |
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 @@ | ||
=========== | ||
controllers | ||
=========== | ||
|
||
Controllers for the application system. | ||
|
||
.. automodule:: niapi.domain.system.controllers | ||
:members: |
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 @@ | ||
====== | ||
system | ||
====== | ||
|
||
.. toctree:: | ||
:titlesonly: | ||
:caption: NIAPI System Domain API Reference | ||
:glob: | ||
:hidden: | ||
|
||
* |
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 @@ | ||
==== | ||
urls | ||
==== | ||
|
||
URL patterns for the NIAPI app. | ||
|
||
.. automodule:: niapi.domain.urls | ||
:members: |
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 @@ | ||
=========== | ||
controllers | ||
=========== | ||
|
||
Controllers for the application web interface. | ||
|
||
.. automodule:: niapi.domain.web.controllers.web | ||
:members: |
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 @@ | ||
=== | ||
web | ||
=== | ||
|
||
.. toctree:: | ||
:titlesonly: | ||
:caption: NIAPI Web Domain API Reference | ||
:glob: | ||
:hidden: | ||
|
||
* |
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,6 +1,34 @@ | ||
============= | ||
API Reference | ||
============= | ||
|
||
.. toctree:: | ||
:titlesonly: | ||
:maxdepth: 1 | ||
:caption: API Reference Documentation | ||
:glob: | ||
:hidden: | ||
|
||
asgi | ||
cli | ||
metadata | ||
utils | ||
|
||
.. toctree:: | ||
:titlesonly: | ||
:caption: Domain API Reference | ||
:glob: | ||
:hidden: | ||
|
||
domain/* | ||
domain/web/index | ||
domain/system/index | ||
domain/calculator/index | ||
|
||
.. toctree:: | ||
:titlesonly: | ||
:caption: Library API Reference | ||
:glob: | ||
:hidden: | ||
|
||
lib/* | ||
lib/log/index |
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 @@ | ||
==== | ||
cors | ||
==== | ||
|
||
CORS config | ||
|
||
.. automodule:: niapi.lib.cors | ||
:members: |
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 @@ | ||
========== | ||
exceptions | ||
========== | ||
|
||
Application exceptions | ||
|
||
.. automodule:: niapi.lib.exceptions | ||
:members: |
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,9 @@ | ||
========== | ||
controller | ||
========== | ||
|
||
Log config for the controllers | ||
|
||
.. automodule:: niapi.lib.log.controller | ||
:members: | ||
:noindex: |
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 @@ | ||
======= | ||
logging | ||
======= | ||
|
||
.. toctree:: | ||
:titlesonly: | ||
:caption: Library Logging API Reference Documentation | ||
:glob: | ||
:hidden: | ||
|
||
* |
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,9 @@ | ||
==== | ||
init | ||
==== | ||
|
||
Log initialization | ||
|
||
.. automodule:: niapi.lib.log.__init__ | ||
:members: | ||
:noindex: |
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,9 @@ | ||
===== | ||
utils | ||
===== | ||
|
||
Log utils | ||
|
||
.. automodule:: niapi.lib.log.utils | ||
:members: | ||
:noindex: |
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 @@ | ||
======= | ||
openapi | ||
======= | ||
|
||
OpenAPI config | ||
|
||
.. automodule:: niapi.lib.openapi | ||
:members: |
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,10 @@ | ||
====== | ||
schema | ||
====== | ||
|
||
Schema for the API and application. | ||
|
||
|
||
.. automodule:: niapi.lib.schema | ||
:members: | ||
:noindex: |
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 @@ | ||
============= | ||
serialization | ||
============= | ||
|
||
Application serialization utilities. | ||
|
||
.. automodule:: niapi.lib.serialization | ||
:members: |
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 @@ | ||
======== | ||
settings | ||
======== | ||
|
||
Application settings | ||
|
||
.. automodule:: niapi.lib.settings | ||
:members: |
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 @@ | ||
============ | ||
static files | ||
============ | ||
|
||
Static file config | ||
|
||
.. automodule:: niapi.lib.static_files | ||
:members: |
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 @@ | ||
========== | ||
template | ||
========== | ||
|
||
Template engine config | ||
|
||
.. automodule:: niapi.lib.template | ||
:members: |
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 @@ | ||
======== | ||
metadata | ||
======== | ||
|
||
Metadata for the application. | ||
|
||
.. automodule:: niapi.metadata | ||
:members: |
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 @@ | ||
===== | ||
utils | ||
===== | ||
|
||
Utilities for the application. | ||
|
||
.. automodule:: niapi.utils | ||
:members: |
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
Oops, something went wrong.