dorky 1.1.0 → 1.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,24 @@
1
+ name: "🚀 Publish on npm"
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+
8
+ jobs:
9
+ release:
10
+ name: 🚀 release
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout
14
+ uses: actions/checkout@v4
15
+ - name: Setup node
16
+ uses: actions/setup-node@v3
17
+ with:
18
+ node-version: "16.x"
19
+ registry-url: 'https://registry.npmjs.org'
20
+ - run: npm install
21
+ - name: 🚀 publish
22
+ run: npm publish --access public
23
+ env:
24
+ NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}
package/README.md CHANGED
@@ -1,11 +1,31 @@
1
1
  # dorky
2
- DevOps Records Keeper
2
+ ```
3
+ __ __
4
+ .--| .-----.----| |--.--.--.
5
+ | _ | _ | _| <| | |
6
+ |_____|_____|__| |__|__|___ |
7
+ |_____|
8
+ ```
9
+
10
+ `DevOps Records Keeper`
11
+
12
+ [![dorky npm](https://img.shields.io/npm/v/dorky.svg?logo=npm)](https://npmjs.com/package/dorky)
13
+
14
+ ![Made with love in India](https://madewithlove.now.sh/in?heart=true&template=for-the-badge) `&& ` ![javascript](https://img.shields.io/badge/JavaScript-323330?style=for-the-badge&logo=javascript&logoColor=F7DF1E)
15
+
16
+ Let us assume that we need to create a project.
17
+
18
+ The project obviously contains some code and some secret variables like database information, API keys, etc. This data cannot be shared on public VCS (GitHub), but at times is required to be accessible remotely to be shared among reliable sources.
19
+
20
+ Anyhow, we shall store it on a private storage, using **dorky**, that stores it on a S3.
3
21
 
4
22
  ## Steps to use:
5
23
 
6
- > Setup AWS_ACCESS_KEY, AWS_SECRET_KEY, AWS_REGION before hand.
24
+ > Create a S3 bucket, AWS_ACCESS_KEY and AWS_SECRET_KEY.
25
+
26
+ ![Dorky Usage](dorky-usage.svg "Dorky usage")
7
27
 
8
- > Create a S3 bucket with the name `dorky` before start.
28
+ > Please use your own repository, this repository `sample_project` is just for demonstration.
9
29
 
10
30
  ### To push files to S3 bucket.
11
31
  1. Initialize dorky setup in the root folder of your project, using `dorky init`.