dorky 2.0.0 → 2.1.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.
- package/README.md +62 -15
- package/bin/index.js +17 -18
- package/dorky-usage-aws.svg +1 -0
- package/dorky-usage-google-drive.svg +1 -0
- package/google-drive-credentials.json +16 -0
- package/package.json +2 -2
- package/To-Do +0 -24
- package/dorky-usage.svg +0 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"web": {
|
|
3
|
+
"client_id": "624017989162-l9r3hqnv0urve3e3eg0eika5oq81mgin.apps.googleusercontent.com",
|
|
4
|
+
"project_id": "sonic-mile-426408-u2",
|
|
5
|
+
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
|
|
6
|
+
"token_uri": "https://oauth2.googleapis.com/token",
|
|
7
|
+
"auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
|
|
8
|
+
"client_secret": "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",
|
|
9
|
+
"javascript_origins": [
|
|
10
|
+
"http://localhost:3000"
|
|
11
|
+
],
|
|
12
|
+
"redirect_uris": [
|
|
13
|
+
"http://localhost:3000/oauth2callback"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
package/package.json
CHANGED
package/To-Do
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
Add stages for variables.
|
|
2
|
-
Fix workflow with CI instead of npm i.
|
|
3
|
-
Convert to TypeScript.
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
Possible commands to add =>
|
|
7
|
-
- node bin/index.js --init [aws|google-drive]
|
|
8
|
-
- node bin/index.js --add [file-names]
|
|
9
|
-
- node bin/index.js --list
|
|
10
|
-
- node bin/index.js --push
|
|
11
|
-
- node bin/index.js --pull
|
|
12
|
-
|
|
13
|
-
{
|
|
14
|
-
"stage-1-files": {
|
|
15
|
-
"abc.txt": {
|
|
16
|
-
"mime-type": "text/plain",
|
|
17
|
-
"checksum": ""
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
"uploaded-files": ["uid1"]
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
checksum of the file contents will be the encrypted string in md5
|
|
24
|
-
option to avoid checksum (used when file size is large)
|