appydave-tools 0.45.1 → 0.46.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/bin/dam +53 -9
- data/lib/appydave/tools/version.rb +1 -1
- data/package.json +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 46df4aa57e2b179986c764d9d84fb88eec068b4c95e26d0f384f9b2f8a576b4d
|
|
4
|
+
data.tar.gz: 6e134ad58469912384763374125331fca9198e76882c6b9f295e8c8512fb2f59
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1dbb7a4789dc8ba587fbd234ebd10140b3a21286476a74e94c95ccf70c40495651c7ea676205c477e1507a14b16ba8f20ff6fec7ac80b504368da379c68aea9f
|
|
7
|
+
data.tar.gz: 53e0af4483c20a3229d8f69effbe7d38d478eb48fadfa69f62dca3bfa42ef7b3b6ba22ab57a953bf0b8d1229adb8b190749daaf9de321739b575e066125dd0a2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [0.45.1](https://github.com/appydave/appydave-tools/compare/v0.45.0...v0.45.1) (2025-11-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* remove double error emoji from raised exceptions ([120bd5b](https://github.com/appydave/appydave-tools/commit/120bd5beba944f13e5fbdc2119bf517e92128b70))
|
|
7
|
+
|
|
1
8
|
# [0.45.0](https://github.com/appydave/appydave-tools/compare/v0.44.0...v0.45.0) (2025-11-21)
|
|
2
9
|
|
|
3
10
|
|
data/bin/dam
CHANGED
|
@@ -817,6 +817,16 @@ class VatCLI
|
|
|
817
817
|
joy → v-beauty-and-joy (Beauty & Joy brand)
|
|
818
818
|
ss → v-supportsignal (SupportSignal client)
|
|
819
819
|
|
|
820
|
+
Brand Input Formats:
|
|
821
|
+
You can use any of these equivalent formats:
|
|
822
|
+
- Shortcut: appydave, ad, AD, Ad (case-insensitive)
|
|
823
|
+
- Key: appydave (from brands.json)
|
|
824
|
+
- Full name: v-appydave (directory name with v- prefix)
|
|
825
|
+
|
|
826
|
+
Configuration:
|
|
827
|
+
Location: ~/.config/appydave/brands.json
|
|
828
|
+
Purpose: Define brand shortcuts, paths, and settings
|
|
829
|
+
|
|
820
830
|
Usage:
|
|
821
831
|
dam list # Show all brands with counts
|
|
822
832
|
dam list appydave # List all AppyDave projects
|
|
@@ -831,17 +841,19 @@ class VatCLI
|
|
|
831
841
|
|
|
832
842
|
DAM supports two primary video content workflows:
|
|
833
843
|
|
|
834
|
-
1. FliVideo Workflow
|
|
844
|
+
1. FliVideo Workflow
|
|
845
|
+
Used by: AppyDave
|
|
835
846
|
- Sequential chapter-based recording
|
|
836
|
-
- Projects follow pattern: [letter][number]-[name]
|
|
837
|
-
-
|
|
847
|
+
- Projects follow pattern: [letter][2-digit-number]-[name]
|
|
848
|
+
- Examples: b65-guy-monroe-marketing-plan, a12-intro-video
|
|
838
849
|
- Short name support: b65 → b65-guy-monroe-marketing-plan
|
|
839
850
|
- Pattern matching: b6* → all projects b60-b69
|
|
840
851
|
|
|
841
|
-
2. Storyline Workflow
|
|
852
|
+
2. Storyline Workflow
|
|
853
|
+
Used by: VOZ, AITLDR, other clients
|
|
842
854
|
- Script-first content creation
|
|
843
855
|
- Projects use full descriptive names
|
|
844
|
-
-
|
|
856
|
+
- Examples: boy-baker, the-point
|
|
845
857
|
- No short name expansion (exact match required)
|
|
846
858
|
|
|
847
859
|
Project Organization:
|
|
@@ -856,6 +868,11 @@ class VatCLI
|
|
|
856
868
|
|
|
857
869
|
Storage Strategy:
|
|
858
870
|
Local → S3 (90-day collaboration) → SSD (long-term archive)
|
|
871
|
+
|
|
872
|
+
S3 Staging (90-day retention):
|
|
873
|
+
- Purpose: Team collaboration and active editing
|
|
874
|
+
- After 90 days: Files archived to SSD or deleted
|
|
875
|
+
- Use 'dam archive' to move completed projects to SSD
|
|
859
876
|
HELP
|
|
860
877
|
end
|
|
861
878
|
|
|
@@ -863,7 +880,7 @@ class VatCLI
|
|
|
863
880
|
puts <<~HELP
|
|
864
881
|
Configuration
|
|
865
882
|
|
|
866
|
-
DAM uses
|
|
883
|
+
DAM uses multiple configuration levels:
|
|
867
884
|
|
|
868
885
|
1. System Configuration (settings.json)
|
|
869
886
|
Location: ~/.config/appydave/settings.json
|
|
@@ -873,11 +890,30 @@ class VatCLI
|
|
|
873
890
|
"video-projects-root": "/Users/yourname/dev/video-projects"
|
|
874
891
|
}
|
|
875
892
|
|
|
893
|
+
Windows Path Format:
|
|
894
|
+
Use forward slashes or double backslashes:
|
|
895
|
+
- "video-projects-root": "C:/Users/yourname/dev/video-projects"
|
|
896
|
+
- "video-projects-root": "C:\\\\Users\\\\yourname\\\\dev\\\\video-projects"
|
|
897
|
+
|
|
876
898
|
Setup:
|
|
877
899
|
ad_config -c # Create configuration
|
|
878
900
|
ad_config -e # Edit configuration
|
|
879
901
|
|
|
880
|
-
2. Brand Configuration (.
|
|
902
|
+
2. Brand Configuration (brands.json)
|
|
903
|
+
Location: ~/.config/appydave/brands.json
|
|
904
|
+
Purpose: Define brand shortcuts, paths, and settings
|
|
905
|
+
Format:
|
|
906
|
+
{
|
|
907
|
+
"brands": {
|
|
908
|
+
"appydave": {
|
|
909
|
+
"shortcut": "ad",
|
|
910
|
+
"name": "AppyDave",
|
|
911
|
+
"youtube_handle": "@appydave"
|
|
912
|
+
}
|
|
913
|
+
}
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
3. Brand Configuration (.video-tools.env)
|
|
881
917
|
Location: <brand-dir>/.video-tools.env
|
|
882
918
|
Purpose: AWS credentials and S3 settings per brand
|
|
883
919
|
Required Keys:
|
|
@@ -885,7 +921,10 @@ class VatCLI
|
|
|
885
921
|
AWS_SECRET_ACCESS_KEY=xxx
|
|
886
922
|
AWS_REGION=us-east-1
|
|
887
923
|
S3_BUCKET=your-bucket-name
|
|
888
|
-
|
|
924
|
+
|
|
925
|
+
Optional Keys:
|
|
926
|
+
S3_BUCKET_PREFIX=staging/ # Optional prefix for S3 paths
|
|
927
|
+
SSD_BASE=/path/to/ssd # Optional, for long-term archives
|
|
889
928
|
|
|
890
929
|
Example:
|
|
891
930
|
v-appydave/.video-tools.env
|
|
@@ -893,7 +932,8 @@ class VatCLI
|
|
|
893
932
|
|
|
894
933
|
Directory Structure:
|
|
895
934
|
~/.config/appydave/
|
|
896
|
-
|
|
935
|
+
├── settings.json # System config
|
|
936
|
+
└── brands.json # Brand shortcuts
|
|
897
937
|
|
|
898
938
|
/Users/yourname/dev/video-projects/
|
|
899
939
|
├── v-appydave/
|
|
@@ -902,6 +942,10 @@ class VatCLI
|
|
|
902
942
|
└── v-voz/
|
|
903
943
|
├── .video-tools.env
|
|
904
944
|
└── boy-baker/
|
|
945
|
+
|
|
946
|
+
Verification:
|
|
947
|
+
dam list # Verify configuration works
|
|
948
|
+
dam list appydave # Test brand-specific access
|
|
905
949
|
HELP
|
|
906
950
|
end
|
|
907
951
|
|
data/package.json
CHANGED