Lib/README.md

123 lines
2.4 KiB
Markdown
Raw Permalink Normal View History

2021-09-01 12:54:14 +00:00
# LibreCloud library
2021-08-28 14:04:40 +00:00
2021-09-01 13:00:30 +00:00
<img style="margin-top: 1em;width: 500px;border: 0" alt="Fork me on GitHub" src="logo/library.svg?sanitize=true">
2021-09-01 12:54:14 +00:00
2021-09-01 20:41:56 +00:00
## List of Libraries for Applications Developments
### Structure
2021-08-28 14:04:40 +00:00
<pre>
.
├── bin
2021-09-01 20:02:14 +00:00
├── clds
2021-09-20 11:46:28 +00:00
├── datastores
2021-08-28 14:04:40 +00:00
├── defs
├── graphql
2021-09-01 20:02:14 +00:00
├── key_of_life
2021-08-28 14:04:40 +00:00
├── macros
2021-09-01 20:02:14 +00:00
├── tkdr
├── utils
2022-02-14 10:59:26 +00:00
├── webenv
2022-02-14 11:51:30 +00:00
├── wrapfilters
└── wraphandlers
2021-08-28 14:04:40 +00:00
</pre>
2021-09-01 20:38:20 +00:00
2021-09-01 20:41:56 +00:00
### How to install
2021-09-01 20:38:20 +00:00
2021-09-01 20:41:56 +00:00
> Clonning or downloading this repository will not include code, each item has his own individual repository
2021-09-01 20:38:20 +00:00
Keep all libraries in one place and run use [on_lib.sh script](/LibreCloud/Lib/src/branch/master/on_libs.sh), review script and comment unnecesary items or any other change.
For **create** via <u>git clone</u> command, use:
```bash
export REPO_URL=https://rlung.librecloud.online
# create a directory or go to directory where libs are going to be created (cloned)
mkdir lib
[path-to-libs.sh]/on_libs.sh clone
```
For **update or sync** via <u>git pull</u> command, use:
```bash
export REPO_URL=https://rlung.librecloud.online
# Go to directory where libs exists
cd lib
[path-to-libs.sh]/on_libs.sh pull
```
2021-09-01 20:41:56 +00:00
### bin
2021-08-28 14:04:40 +00:00
2021-09-01 20:02:14 +00:00
Tools and utils: Scripts and tools to maintain this library
2021-08-28 14:04:40 +00:00
2021-09-01 20:02:14 +00:00
[Bin library](/LibreCloud/lib_bin)
2021-08-28 14:04:40 +00:00
2021-09-01 20:41:56 +00:00
### clds
2021-08-28 14:04:40 +00:00
2021-09-01 20:02:14 +00:00
Clouds definitions
[CLDS Library](/LibreCloud/lib_clds)
2021-08-28 14:04:40 +00:00
2021-09-01 20:41:56 +00:00
### defs
2021-08-28 14:04:40 +00:00
2021-09-01 20:02:14 +00:00
Definitions Library collection of basic applications needs
[Defs Library](/LibreCloud/lib_defs)
2021-09-20 11:46:28 +00:00
### datastores
Datastores Library for data stores connections
[Data Stores Library](/LibreCloud/lib_datastores)
2021-09-01 20:41:56 +00:00
### graphql
2021-08-28 14:04:40 +00:00
Library for GraphQL
2021-09-01 20:02:14 +00:00
[GraphQL Library](/LibreCloud/lib_graphql)
2021-09-01 20:41:56 +00:00
### kye_of_life
2021-08-28 14:04:40 +00:00
2021-09-01 20:02:14 +00:00
Getting master key
2021-08-28 14:04:40 +00:00
2021-09-01 20:02:14 +00:00
[Key of Life Library](/LibreCloud/lib_key_of_life)
2021-08-28 14:04:40 +00:00
2021-09-01 20:41:56 +00:00
### macros
2021-08-28 14:04:40 +00:00
2021-09-01 20:02:14 +00:00
Rust Macros Libraries for applications
2021-08-28 14:04:40 +00:00
2021-09-01 20:02:14 +00:00
[Macros Library](/LibreCloud/lib_macros)
2021-09-01 20:41:56 +00:00
### utils
2021-08-28 14:04:40 +00:00
Utilities and tools library
2021-09-01 20:02:14 +00:00
[Utils Library](/LibreCloud/lib_utils)
2021-09-01 20:41:56 +00:00
### tkdr
2021-09-01 20:02:14 +00:00
Encrypt/Decrypt and templating
[Tkdr Library](/LibreCloud/lib_tkdr)
2022-02-14 10:59:26 +00:00
### webenv
2021-09-01 20:02:14 +00:00
To init and load application
2021-10-07 22:01:07 +00:00
[Webenv library](/LibreCloud/lib_webenv)
2022-02-14 10:59:26 +00:00
### wrapfilters
Rust Libraries Collections for wrap webservices [warp](https://github.com/seanmonstar/warp) filters and routes configuration
[Wrap Webservices Filters Library](/LibreCloud/lib_wrapfilters)
2022-02-14 11:51:30 +00:00
### wraphandlers
Wrap Handlers for filters with [warp](https://github.com/seanmonstar/warp)
[Wrap Webservices Handlers Library](/LibreCloud/lib_wraphandlers)
2022-02-14 10:59:26 +00:00