-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathindex.html
More file actions
2102 lines (1921 loc) · 121 KB
/
Copy pathindex.html
File metadata and controls
2102 lines (1921 loc) · 121 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>geeadd | Google Earth Engine Batch Asset Manager</title>
<meta name="description"
content="Documentation for geeadd: A CLI for managing Google Earth Engine assets in batch.">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://geeadd.geetools.xyz">
<meta property="og:title" content="geeadd | Google Earth Engine Batch Asset Manager">
<meta property="og:description"
content="geeadd extends the Google Earth Engine CLI with powerful batch operations. Recursively copy, move, and delete assets, manage permissions, authentication, and query quotas with a modern, structured interface.">
<meta property="og:image" content="https://i.imgur.com/VP6DuMy.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://geeadd.geetools.xyz">
<meta property="twitter:title" content="geeadd | Google Earth Engine Batch Asset Manager">
<meta property="twitter:description"
content="geeadd extends the Google Earth Engine CLI with powerful batch operations. Recursively copy, move, and delete assets, manage permissions, authentication, and query quotas with a modern, structured interface.">
<meta property="twitter:image" content="https://i.imgur.com/VP6DuMy.png">
<!-- Favicon (Browser Tab Logo) -->
<link rel="icon" type="image/png" href="https://i.imgur.com/VP6DuMy.png">
<!-- Fonts & Icons -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&family=Montserrat:wght@300;400;500;600;700&display=swap"
rel="stylesheet">
<script src="https://unpkg.com/lucide@latest"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/1.4.1/html2canvas.min.js"></script>
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
mono: ['JetBrains Mono', 'monospace'],
dashboard: ['Montserrat', 'sans-serif'],
},
colors: {
brand: {
50: '#f0f9ff',
100: '#e0f2fe',
500: '#0ea5e9',
600: '#0284c7',
700: '#0369a1',
900: '#0c4a6e',
},
emerald: {
50: '#ecfdf5',
100: '#d1fae5',
500: '#10b981',
600: '#059669',
900: '#064e3b',
},
dark: {
bg: '#0B1120',
surface: '#1e293b',
border: '#334155'
}
}
}
}
}
</script>
<style>
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 4px;
}
.dark ::-webkit-scrollbar-thumb {
background: #475569;
}
/* Code Block Styling */
pre {
position: relative;
white-space: pre-wrap;
word-wrap: break-word;
padding: 1rem;
padding-bottom: 1rem;
padding-right: 4rem;
line-height: 1.5;
}
/* The Copy Button */
.copy-btn {
position: absolute;
top: 0.5rem;
right: 0.5rem;
opacity: 0;
transform: translateY(-2px);
transition: all 0.2s ease;
background-color: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(4px);
border: 1px solid rgba(255, 255, 255, 0.2);
z-index: 10;
}
pre:hover .copy-btn,
.copy-btn:focus {
opacity: 1;
transform: translateY(0);
}
.glass-nav {
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
}
.active-nav {
background-color: rgba(14, 165, 233, 0.1);
color: #0ea5e9;
border-right: 3px solid #0ea5e9;
}
.dark .active-nav {
background-color: rgba(14, 165, 233, 0.15);
color: #38bdf8;
border-right: 3px solid #38bdf8;
}
/* Accordion Animations for Sidebar */
.sidebar-group details>summary {
list-style: none;
}
.sidebar-group details>summary::-webkit-details-marker {
display: none;
}
.sidebar-group details[open] summary~* {
animation: slideDown 0.2s ease-in-out;
}
/* Accordion Animations for Migration Guide */
.migration-group details>summary {
list-style: none;
}
.migration-group details>summary::-webkit-details-marker {
display: none;
}
.migration-group details[open] summary~* {
animation: slideDown 0.2s ease-in-out;
}
@keyframes slideDown {
0% {
opacity: 0;
transform: translateY(-5px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.rotate-icon {
transition: transform 0.3s ease;
}
details[open] .rotate-icon {
transform: rotate(180deg);
}
/* Dashboard Preview Styles (Scoped) */
.dashboard-preview-wrapper {
font-family: 'Montserrat', sans-serif;
}
.dashboard-stat-card {
transition: all 0.3s ease;
}
.dashboard-stat-card:hover {
transform: translateY(-4px);
}
.dashboard-stat-card.active {
box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.4);
transform: scale(1.02);
}
</style>
</head>
<body
class="bg-gray-50 text-slate-800 dark:bg-dark-bg dark:text-slate-300 transition-colors duration-300 antialiased selection:bg-brand-500 selection:text-white pt-10">
<!-- Social Follow Header -->
<div
class="fixed top-0 left-0 w-full z-[60] bg-[#161b22] text-white py-2.5 flex items-center justify-center gap-6 text-sm font-medium border-b border-gray-800 shadow-md">
<span class="text-gray-400 font-semibold hidden sm:inline">Follow me on</span>
<a href="https://linkedin.com/in/samapriya" target="_blank"
class="flex items-center gap-1.5 hover:text-brand-400 transition-colors group">
<i data-lucide="linkedin" class="w-4 h-4 fill-current"></i>
<span class="group-hover:underline decoration-brand-400 underline-offset-4">LinkedIn</span>
</a>
<a href="https://github.com/samapriya" target="_blank"
class="flex items-center gap-1.5 hover:text-brand-400 transition-colors group">
<i data-lucide="github" class="w-4 h-4 fill-current"></i>
<span class="group-hover:underline decoration-brand-400 underline-offset-4">GitHub</span>
</a>
<a href="https://datacommons.substack.com" target="_blank"
class="flex items-center gap-1.5 hover:text-brand-400 transition-colors group">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="currentColor"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="lucide lucide-bookmark">
<path d="m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z" />
</svg>
<span class="group-hover:underline decoration-brand-400 underline-offset-4">Substack</span>
</a>
</div>
<!-- Mobile Header -->
<div
class="lg:hidden fixed top-10 w-full z-50 bg-white/90 dark:bg-dark-bg/90 glass-nav border-b border-gray-200 dark:border-dark-border px-4 py-3 flex items-center justify-between">
<div class="flex items-center gap-2">
<!-- Mobile Logo -->
<img src="https://i.imgur.com/VP6DuMy.png" alt="geeadd logo" class="w-8 h-8 drop-shadow-sm">
<span class="font-bold text-lg tracking-tight text-slate-900 dark:text-white">geeadd</span>
</div>
<button id="menu-toggle" class="p-2 rounded-md hover:bg-gray-100 dark:hover:bg-dark-surface">
<i data-lucide="menu"></i>
</button>
</div>
<div class="flex min-h-screen pt-16 lg:pt-0">
<!-- Sidebar -->
<aside id="sidebar"
class="fixed inset-y-0 left-0 z-40 w-72 mt-10 lg:mt-0 transform -translate-x-full lg:translate-x-0 transition-transform duration-300 bg-white dark:bg-dark-surface border-r border-gray-200 dark:border-dark-border flex flex-col h-screen lg:h-[calc(100vh-40px)] lg:top-10">
<!-- Logo Area -->
<div class="p-6 border-b border-gray-100 dark:border-dark-border hidden lg:block">
<a href="#" class="flex items-center gap-3">
<div class="relative group">
<!-- Main Logo Icon -->
<img src="https://i.imgur.com/VP6DuMy.png" alt="geeadd"
class="w-12 h-12 transition-transform group-hover:scale-105 drop-shadow-md">
</div>
<div>
<h1 class="font-bold text-2xl text-slate-900 dark:text-white leading-none">geeadd</h1>
<p class="text-[10px] uppercase tracking-wider text-slate-500 font-bold mt-1.5">Asset Manager
Addons</p>
</div>
</a>
</div>
<!-- Search -->
<div class="px-5 py-4">
<div class="relative group">
<i data-lucide="search"
class="absolute left-3 top-2.5 text-gray-400 w-4 h-4 group-focus-within:text-brand-500 transition-colors"></i>
<input type="text" id="search-input" placeholder="Search docs..."
class="w-full bg-gray-100 dark:bg-gray-900/50 text-sm rounded-lg pl-9 pr-3 py-2 border border-transparent focus:border-brand-500 focus:ring-1 focus:ring-brand-500 focus:outline-none dark:text-white transition-all placeholder:text-gray-500">
</div>
</div>
<!-- Accordion Navigation -->
<nav class="flex-1 overflow-y-auto px-3 pb-6 space-y-1" id="nav-container">
<!-- Top Level Links -->
<a href="#introduction"
class="nav-item block px-3 py-2 rounded-md text-sm font-medium hover:bg-gray-50 dark:hover:bg-gray-800 transition-colors">Introduction</a>
<a href="#interface"
class="nav-item block px-3 py-2 rounded-md text-sm font-medium hover:bg-gray-50 dark:hover:bg-gray-800 transition-colors">Main
Interface</a>
<a href="#installation"
class="nav-item block px-3 py-2 rounded-md text-sm font-medium hover:bg-gray-50 dark:hover:bg-gray-800 transition-colors">Installation</a>
<a href="#migration"
class="nav-item block px-3 py-2 rounded-md text-sm font-medium text-amber-600 dark:text-amber-400 bg-amber-50 dark:bg-amber-900/10 hover:bg-amber-100 dark:hover:bg-amber-900/20 transition-colors mt-2 mb-4">
<i data-lucide="alert-circle" class="inline w-3 h-3 mr-1"></i> Migration Guide
</a>
<!-- Auth Group (New) -->
<div class="sidebar-group">
<details class="group">
<summary
class="flex items-center justify-between px-3 py-2 rounded-md cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 transition-colors text-sm font-bold text-gray-500 uppercase tracking-wider">
<span class="flex items-center gap-2"><i data-lucide="key" size="14"></i>
Auth</span>
<i data-lucide="chevron-down" size="14" class="rotate-icon"></i>
</summary>
<div class="pl-2 space-y-1 mt-1">
<a href="#auth-service"
class="nav-item block px-3 py-2 rounded-md text-sm text-gray-600 dark:text-gray-400 hover:text-brand-600 dark:hover:text-brand-400 hover:bg-gray-50 dark:hover:bg-gray-800 transition-colors border-l-2 border-transparent hover:border-brand-500">Service
Account</a>
</div>
</details>
</div>
<!-- Projects Group -->
<div class="sidebar-group">
<details class="group">
<summary
class="flex items-center justify-between px-3 py-2 rounded-md cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 transition-colors text-sm font-bold text-gray-500 uppercase tracking-wider">
<span class="flex items-center gap-2"><i data-lucide="folder-kanban" size="14"></i>
Projects</span>
<i data-lucide="chevron-down" size="14" class="rotate-icon"></i>
</summary>
<div class="pl-2 space-y-1 mt-1">
<a href="#projects-quota"
class="nav-item block px-3 py-2 rounded-md text-sm text-gray-600 dark:text-gray-400 hover:text-brand-600 dark:hover:text-brand-400 hover:bg-gray-50 dark:hover:bg-gray-800 transition-colors border-l-2 border-transparent hover:border-brand-500">Quota</a>
<a href="#projects-enabled"
class="nav-item block px-3 py-2 rounded-md text-sm text-gray-600 dark:text-gray-400 hover:text-brand-600 dark:hover:text-brand-400 hover:bg-gray-50 dark:hover:bg-gray-800 transition-colors border-l-2 border-transparent hover:border-brand-500">Enabled
Projects</a>
<a href="#projects-dash"
class="nav-item block px-3 py-2 rounded-md text-sm text-gray-600 dark:text-gray-400 hover:text-brand-600 dark:hover:text-brand-400 hover:bg-gray-50 dark:hover:bg-gray-800 transition-colors border-l-2 border-transparent hover:border-brand-500">Dashboard</a>
</div>
</details>
</div>
<!-- Assets Group -->
<div class="sidebar-group">
<details class="group">
<summary
class="flex items-center justify-between px-3 py-2 rounded-md cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 transition-colors text-sm font-bold text-gray-500 uppercase tracking-wider">
<span class="flex items-center gap-2"><i data-lucide="layers" size="14"></i> Assets</span>
<i data-lucide="chevron-down" size="14" class="rotate-icon"></i>
</summary>
<div class="pl-2 space-y-1 mt-1">
<a href="#assets-info"
class="nav-item block px-3 py-2 rounded-md text-sm text-gray-600 dark:text-gray-400 hover:text-brand-600 dark:hover:text-brand-400 hover:bg-gray-50 dark:hover:bg-gray-800 transition-colors border-l-2 border-transparent hover:border-brand-500">Info</a>
<a href="#assets-copy"
class="nav-item block px-3 py-2 rounded-md text-sm text-gray-600 dark:text-gray-400 hover:text-brand-600 dark:hover:text-brand-400 hover:bg-gray-50 dark:hover:bg-gray-800 transition-colors border-l-2 border-transparent hover:border-brand-500">Copy</a>
<a href="#assets-move"
class="nav-item block px-3 py-2 rounded-md text-sm text-gray-600 dark:text-gray-400 hover:text-brand-600 dark:hover:text-brand-400 hover:bg-gray-50 dark:hover:bg-gray-800 transition-colors border-l-2 border-transparent hover:border-brand-500">Move</a>
<a href="#assets-delete"
class="nav-item block px-3 py-2 rounded-md text-sm text-gray-600 dark:text-gray-400 hover:text-brand-600 dark:hover:text-brand-400 hover:bg-gray-50 dark:hover:bg-gray-800 transition-colors border-l-2 border-transparent hover:border-brand-500">Delete</a>
<a href="#assets-delete-meta"
class="nav-item block px-3 py-2 rounded-md text-sm text-gray-600 dark:text-gray-400 hover:text-brand-600 dark:hover:text-brand-400 hover:bg-gray-50 dark:hover:bg-gray-800 transition-colors border-l-2 border-transparent hover:border-brand-500">Delete
Metadata</a>
<a href="#assets-access"
class="nav-item block px-3 py-2 rounded-md text-sm text-gray-600 dark:text-gray-400 hover:text-brand-600 dark:hover:text-brand-400 hover:bg-gray-50 dark:hover:bg-gray-800 transition-colors border-l-2 border-transparent hover:border-brand-500">Access
(ACL)</a>
<a href="#assets-size"
class="nav-item block px-3 py-2 rounded-md text-sm text-gray-600 dark:text-gray-400 hover:text-brand-600 dark:hover:text-brand-400 hover:bg-gray-50 dark:hover:bg-gray-800 transition-colors border-l-2 border-transparent hover:border-brand-500">Size</a>
</div>
</details>
</div>
<!-- Tasks Group -->
<div class="sidebar-group">
<details class="group">
<summary
class="flex items-center justify-between px-3 py-2 rounded-md cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 transition-colors text-sm font-bold text-gray-500 uppercase tracking-wider">
<span class="flex items-center gap-2"><i data-lucide="list-checks" size="14"></i>
Tasks</span>
<i data-lucide="chevron-down" size="14" class="rotate-icon"></i>
</summary>
<div class="pl-2 space-y-1 mt-1">
<a href="#tasks-list"
class="nav-item block px-3 py-2 rounded-md text-sm text-gray-600 dark:text-gray-400 hover:text-brand-600 dark:hover:text-brand-400 hover:bg-gray-50 dark:hover:bg-gray-800 transition-colors border-l-2 border-transparent hover:border-brand-500">List
& Status</a>
<a href="#tasks-cancel"
class="nav-item block px-3 py-2 rounded-md text-sm text-gray-600 dark:text-gray-400 hover:text-brand-600 dark:hover:text-brand-400 hover:bg-gray-50 dark:hover:bg-gray-800 transition-colors border-l-2 border-transparent hover:border-brand-500">Cancel</a>
</div>
</details>
</div>
<!-- Utils Group -->
<div class="sidebar-group">
<details class="group">
<summary
class="flex items-center justify-between px-3 py-2 rounded-md cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 transition-colors text-sm font-bold text-gray-500 uppercase tracking-wider">
<span class="flex items-center gap-2"><i data-lucide="wrench" size="14"></i> Utils</span>
<i data-lucide="chevron-down" size="14" class="rotate-icon"></i>
</summary>
<div class="pl-2 space-y-1 mt-1">
<a href="#utils-search"
class="nav-item block px-3 py-2 rounded-md text-sm text-gray-600 dark:text-gray-400 hover:text-brand-600 dark:hover:text-brand-400 hover:bg-gray-50 dark:hover:bg-gray-800 transition-colors border-l-2 border-transparent hover:border-brand-500">Search</a>
<a href="#utils-app2script"
class="nav-item block px-3 py-2 rounded-md text-sm text-gray-600 dark:text-gray-400 hover:text-brand-600 dark:hover:text-brand-400 hover:bg-gray-50 dark:hover:bg-gray-800 transition-colors border-l-2 border-transparent hover:border-brand-500">App
to Script</a>
<a href="#utils-report"
class="nav-item block px-3 py-2 rounded-md text-sm text-gray-600 dark:text-gray-400 hover:text-brand-600 dark:hover:text-brand-400 hover:bg-gray-50 dark:hover:bg-gray-800 transition-colors border-l-2 border-transparent hover:border-brand-500">Asset
Report</a>
<a href="#utils-palette"
class="nav-item block px-3 py-2 rounded-md text-sm text-gray-600 dark:text-gray-400 hover:text-brand-600 dark:hover:text-brand-400 hover:bg-gray-50 dark:hover:bg-gray-800 transition-colors border-l-2 border-transparent hover:border-brand-500">Palette</a>
</div>
</details>
</div>
<!-- Examples Link -->
<a href="#examples"
class="nav-item block px-3 py-2 rounded-md text-sm font-medium text-emerald-600 dark:text-emerald-400 bg-emerald-50 dark:bg-emerald-900/10 hover:bg-emerald-100 dark:hover:bg-emerald-900/20 transition-colors mt-4">
<i data-lucide="book-open" class="inline w-3 h-3 mr-1"></i> Examples & Guides
</a>
</nav>
<!-- Sidebar Footer -->
<div
class="p-4 border-t border-gray-200 dark:border-dark-border flex items-center justify-between bg-gray-50 dark:bg-black/20">
<button id="theme-toggle"
class="p-2 rounded-md text-gray-500 hover:bg-white dark:hover:bg-gray-700 dark:text-gray-400 transition-all shadow-sm">
<i data-lucide="moon" class="block dark:hidden" size="18"></i>
<i data-lucide="sun" class="hidden dark:block" size="18"></i>
</button>
<a href="https://github.com/samapriya/gee_asset_manager_addon" target="_blank"
class="flex items-center gap-2 text-sm text-slate-600 hover:text-brand-600 dark:text-slate-400 dark:hover:text-brand-400 transition-colors font-medium">
<i data-lucide="github" size="16"></i> GitHub
</a>
</div>
</aside>
<!-- Main Content -->
<main class="lg:ml-72 flex-1 max-w-5xl mx-auto px-6 py-12 lg:px-12 w-full">
<!-- Hero -->
<section id="introduction" class="mb-16 relative">
<div
class="inline-flex items-center gap-2 px-3 py-1 rounded-full bg-brand-50 text-brand-700 dark:bg-brand-900/30 dark:text-brand-300 text-xs font-bold mb-6 border border-brand-100 dark:border-brand-800">
<span class="relative flex h-2 w-2">
<span
class="animate-ping absolute inline-flex h-full w-full rounded-full bg-brand-400 opacity-75"></span>
<span class="relative inline-flex rounded-full h-2 w-2 bg-brand-500"></span>
</span>
New in v2.1.0: Service Account Auth
</div>
<div class="flex flex-col md:flex-row items-center gap-8 mb-6">
<div class="flex-1">
<h1
class="text-4xl lg:text-6xl font-extrabold text-slate-900 dark:text-white tracking-tight mb-6">
Manage Earth Engine Assets <br class="hidden lg:block" />
<span
class="bg-clip-text text-transparent bg-gradient-to-r from-brand-500 via-brand-600 to-purple-600">Like
a Power User.</span>
</h1>
<p class="text-lg lg:text-xl text-slate-600 dark:text-slate-400 leading-relaxed max-w-3xl mb-8">
<b>geeadd</b> extends the Google Earth Engine CLI with powerful batch operations.
Recursively copy, move, and delete assets, manage permissions, authentication, and query
quotas with a
modern,
structured interface.
</p>
</div>
<!-- Hero Image / Secondary Logo -->
<div class="hidden md:block w-48 opacity-90 hover:opacity-100 transition-opacity">
<img src="https://i.imgur.com/89EfjzK.png" alt="Hexagonal geeadd logo"
class="w-full drop-shadow-2xl">
</div>
</div>
<!-- Badges (Moved Above Buttons) -->
<div class="flex flex-wrap gap-2 items-center mb-8">
<a href="https://www.linkedin.com/in/samapriya/" target="_blank"><img
src="https://img.shields.io/badge/LinkedIn-0077B5?style=plastic&logo=linkedin&logoColor=white"
alt="LinkedIn"></a>
<a href="https://pypi.org/project/geeadd/" target="_blank" rel="noopener">
<img src="https://img.shields.io/pypi/v/geeadd" alt="PyPI version" />
</a>
<a href="https://github.com/sponsors/samapriya" target="_blank" rel="noopener">
<img src="https://img.shields.io/static/v1?label=Sponsor&message=%E2%9D%A4&logo=GitHub&color=%23fe8e86"
alt="Sponsor" />
</a>
<img src="https://github.com/samapriya/gee_asset_manager_addon/workflows/CI%20geeadd/badge.svg"
alt="CI">
<a href="https://www.buymeacoffee.com/samapriya" target="_blank"><img
src="https://img.shields.io/badge/Donate-Buy%20me%20a%20Chai-teal" alt="Donate"></a>
</div>
<div class="flex flex-col sm:flex-row gap-4 items-center flex-wrap">
<a href="#installation"
class="w-full sm:w-auto inline-flex items-center justify-center px-8 py-3.5 border border-transparent text-base font-semibold rounded-xl text-white bg-brand-600 hover:bg-brand-700 transition shadow-lg shadow-brand-500/30 hover:shadow-brand-500/50">
<i data-lucide="terminal" class="mr-2" size="20"></i> Install Now
</a>
<a href="https://github.com/samapriya/gee_asset_manager_addon" target="_blank"
class="w-full sm:w-auto inline-flex items-center justify-center px-8 py-3.5 border border-gray-300 dark:border-gray-600 text-base font-medium rounded-xl text-slate-700 dark:text-slate-200 bg-white dark:bg-dark-surface hover:bg-gray-50 dark:hover:bg-gray-800 transition shadow-sm">
<i data-lucide="star" class="mr-2 text-yellow-500 fill-yellow-500" size="20"></i> Star on GitHub
</a>
<!-- New Changelog Button -->
<a href="https://geeadd.geetools.xyz/changelog" target="_blank"
class="w-full sm:w-auto inline-flex items-center justify-center px-8 py-3.5 border border-gray-300 dark:border-gray-600 text-base font-medium rounded-xl text-slate-700 dark:text-slate-200 bg-white dark:bg-dark-surface hover:bg-gray-50 dark:hover:bg-gray-800 transition shadow-sm">
<i data-lucide="history" class="mr-2 text-purple-500" size="20"></i> View Changelog
</a>
</div>
<!-- ADDED: Analytics Dashboard Iframe -->
<!-- Same setting applied: only reduce height, keep everything else intact -->
<div
class="mt-6 w-full bg-white dark:bg-dark-surface rounded-2xl overflow-hidden shadow-lg border border-gray-200 dark:border-dark-border">
<!-- Light mode -->
<iframe id="dash-light" class="block dark:hidden w-full border-0" height="475"
src="https://clickhouse-analytics.metabaseapp.com/public/dashboard/8d516106-3a9f-4674-aafc-aa39d6380ee2?project_name=geeadd#&theme=day"
allowtransparency>
</iframe>
<!-- Dark mode -->
<iframe id="dash-dark" class="hidden dark:block w-full border-0" height="475"
src="https://clickhouse-analytics.metabaseapp.com/public/dashboard/8d516106-3a9f-4674-aafc-aa39d6380ee2?project_name=geeadd#&theme=night"
allowtransparency>
</iframe>
</div>
<!-- Adjust height="420"–"480" if you want it tighter or looser -->
</section>
<!-- Interface Section -->
<section id="interface" class="mb-24 scroll-mt-28">
<h2 class="text-2xl font-bold text-slate-900 dark:text-white mb-6 flex items-center gap-3">
<div class="bg-slate-100 dark:bg-slate-800 p-2 rounded-lg"><i data-lucide="command"
class="text-brand-500"></i></div>
Main Interface
</h2>
<p class="mb-6 text-slate-600 dark:text-slate-400">
The <code>geeadd</code> tool uses a grouped command structure. Run <code>geeadd --help</code> to see
the available groups.
</p>
<!-- TERMINAL BLOCK -->
<div class="bg-slate-900 rounded-xl overflow-hidden shadow-lg border border-slate-800 group">
<div class="bg-slate-950 px-4 py-2 flex justify-between items-center border-b border-slate-800">
<div class="flex gap-1.5">
<div class="w-3 h-3 rounded-full bg-red-500"></div>
<div class="w-3 h-3 rounded-full bg-yellow-500"></div>
<div class="w-3 h-3 rounded-full bg-green-500"></div>
</div>
<span class="text-xs text-slate-500 font-mono">Terminal</span>
</div>
<div class="relative">
<pre class="font-mono text-sm text-white"><code>Usage: geeadd [OPTIONS] COMMAND [ARGS]...
Google Earth Engine Batch Asset Manager with Addons
A modern CLI tool for managing GEE assets, tasks, and projects.
Options:
--version Show the version and exit.
-h, --help Show this message and exit.
Commands:
auth Configure service account authentication
readme Open the geeadd documentation webpage
projects Manage Earth Engine projects
assets Manage Earth Engine assets
tasks Manage Earth Engine tasks
utils Utility commands
</code><button class="copy-btn text-white text-xs px-2 py-1 rounded" onclick="copyCode(this)">Copy</button></pre>
</div>
</div>
</section>
<!-- Installation -->
<section id="installation" class="mb-24 scroll-mt-28">
<h2 class="text-2xl font-bold text-slate-900 dark:text-white mb-6 flex items-center gap-3">
<div class="bg-slate-100 dark:bg-slate-800 p-2 rounded-lg"><i data-lucide="download"
class="text-brand-500"></i></div>
Installation
</h2>
<div class="prose dark:prose-invert max-w-none text-slate-600 dark:text-slate-400 mb-8">
<p>You can install `geeadd` using pip, git, or build it from source using `pyproject.toml`.</p>
</div>
<!-- Installation Methods -->
<div class="grid gap-8">
<!-- Method 1: PIP -->
<div>
<h3 class="text-sm font-bold text-slate-900 dark:text-white mb-2 uppercase tracking-wide">Method
1: PyPI (Recommended)</h3>
<div class="bg-slate-900 rounded-xl overflow-hidden shadow-lg border border-slate-800 group">
<div
class="bg-slate-950 px-4 py-2 flex justify-between items-center border-b border-slate-800">
<div class="flex gap-1.5">
<div class="w-3 h-3 rounded-full bg-red-500"></div>
<div class="w-3 h-3 rounded-full bg-yellow-500"></div>
<div class="w-3 h-3 rounded-full bg-green-500"></div>
</div>
<span class="text-xs text-slate-500 font-mono">Terminal</span>
</div>
<div class="relative">
<pre
class="font-mono text-sm text-white p-2"><code>pip install geeadd</code><button class="copy-btn text-white text-xs px-2.5 py-1.5 rounded-md font-medium" onclick="copyCode(this)">Copy</button></pre>
</div>
</div>
</div>
<!-- Method 2: GIT -->
<div>
<h3 class="text-sm font-bold text-slate-900 dark:text-white mb-2 uppercase tracking-wide">Method
2: GitHub Source</h3>
<div class="bg-slate-900 rounded-xl overflow-hidden shadow-lg border border-slate-800 group">
<div
class="bg-slate-950 px-4 py-2 flex justify-between items-center border-b border-slate-800">
<div class="flex gap-1.5">
<div class="w-3 h-3 rounded-full bg-red-500"></div>
<div class="w-3 h-3 rounded-full bg-yellow-500"></div>
<div class="w-3 h-3 rounded-full bg-green-500"></div>
</div>
<span class="text-xs text-slate-500 font-mono">Terminal</span>
</div>
<div class="relative">
<pre
class="font-mono text-sm text-white p-2"><code>git clone https://github.com/samapriya/gee_asset_manager_addon.git
cd gee_asset_manager_addon
pip install .</code><button class="copy-btn text-white text-xs px-2.5 py-1.5 rounded-md font-medium" onclick="copyCode(this)">Copy</button></pre>
</div>
</div>
</div>
</div>
<div
class="mt-8 p-4 bg-amber-50 dark:bg-amber-900/20 border-l-4 border-amber-400 rounded-r-lg flex gap-4">
<i data-lucide="alert-triangle" class="text-amber-600 dark:text-amber-400 shrink-0"></i>
<p class="text-sm text-amber-800 dark:text-amber-200">
<strong>Requirement:</strong> Ensure you have the Earth Engine Python API installed and
authenticated via <code
class="bg-amber-100 dark:bg-amber-900/50 px-1 py-0.5 rounded font-mono text-amber-900 dark:text-amber-100">earthengine authenticate</code>.
</p>
</div>
</section>
<!-- Migration Guide -->
<section id="migration" class="mb-24 scroll-mt-28">
<h2 class="text-2xl font-bold text-slate-900 dark:text-white mb-6 flex items-center gap-3">
<div class="bg-slate-100 dark:bg-slate-800 p-2 rounded-lg"><i data-lucide="git-pull-request"
class="text-purple-500"></i></div>
Migration Guide: v1.2.1 to 2.0.0
</h2>
<p class="mb-6 text-slate-600 dark:text-slate-400">
Version 2.0.0 organizes commands into logical groups. Click a group below to see how the commands
have
changed.
</p>
<!-- Collapsible Sections -->
<div class="space-y-4 migration-group">
<!-- Group: Projects -->
<details
class="group bg-white dark:bg-dark-surface border border-gray-200 dark:border-dark-border rounded-xl shadow-sm overflow-hidden">
<summary
class="flex items-center justify-between p-5 cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800/50 transition-colors">
<div class="flex items-center gap-3">
<div
class="p-2 bg-blue-100 dark:bg-blue-900/30 text-blue-600 dark:text-blue-400 rounded-lg">
<i data-lucide="folder-kanban" size="20"></i>
</div>
<div>
<h3 class="font-bold text-slate-900 dark:text-white text-lg">Projects Group</h3>
<p class="text-sm text-slate-500 dark:text-slate-400">Quota, Enabled Projects,
Dashboards</p>
</div>
</div>
<i data-lucide="chevron-down" class="rotate-icon text-gray-400"></i>
</summary>
<div
class="p-0 border-t border-gray-100 dark:border-gray-700 bg-gray-50/50 dark:bg-gray-900/20">
<table class="min-w-full divide-y divide-gray-200 dark:divide-gray-700">
<thead class="bg-gray-50 dark:bg-gray-800">
<tr>
<th
class="px-6 py-4 text-left text-xs font-bold text-gray-500 uppercase tracking-wider">
Old Command</th>
<th
class="px-6 py-4 text-left text-xs font-bold text-gray-500 uppercase tracking-wider">
New Command</th>
</tr>
</thead>
<tbody
class="bg-white dark:bg-dark-surface divide-y divide-gray-200 dark:divide-gray-700 font-mono text-sm">
<tr>
<td class="px-6 py-4 text-red-500 line-through opacity-75">geeadd quota</td>
<td class="px-6 py-4 text-green-600 dark:text-green-400 font-bold">geeadd
projects quota</td>
</tr>
<tr>
<td class="px-6 py-4 text-red-500 line-through opacity-75">geeadd projects</td>
<td class="px-6 py-4 text-green-600 dark:text-green-400 font-bold">geeadd
projects enabled</td>
</tr>
<tr>
<td class="px-6 py-4 text-red-500 line-through opacity-75">geeadd projects_dash
</td>
<td class="px-6 py-4 text-green-600 dark:text-green-400 font-bold">geeadd
projects dashboard</td>
</tr>
</tbody>
</table>
</div>
</details>
<!-- Group: Assets -->
<details
class="group bg-white dark:bg-dark-surface border border-gray-200 dark:border-dark-border rounded-xl shadow-sm overflow-hidden">
<summary
class="flex items-center justify-between p-5 cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800/50 transition-colors">
<div class="flex items-center gap-3">
<div
class="p-2 bg-emerald-100 dark:bg-emerald-900/30 text-emerald-600 dark:text-emerald-400 rounded-lg">
<i data-lucide="layers" size="20"></i>
</div>
<div>
<h3 class="font-bold text-slate-900 dark:text-white text-lg">Assets Group</h3>
<p class="text-sm text-slate-500 dark:text-slate-400">Copy, Move, Delete, Access,
Size</p>
</div>
</div>
<i data-lucide="chevron-down" class="rotate-icon text-gray-400"></i>
</summary>
<div
class="p-0 border-t border-gray-100 dark:border-gray-700 bg-gray-50/50 dark:bg-gray-900/20">
<table class="min-w-full divide-y divide-gray-200 dark:divide-gray-700">
<thead class="bg-gray-50 dark:bg-gray-800">
<tr>
<th
class="px-6 py-4 text-left text-xs font-bold text-gray-500 uppercase tracking-wider">
Old Command</th>
<th
class="px-6 py-4 text-left text-xs font-bold text-gray-500 uppercase tracking-wider">
New Command</th>
</tr>
</thead>
<tbody
class="bg-white dark:bg-dark-surface divide-y divide-gray-200 dark:divide-gray-700 font-mono text-sm">
<tr>
<td class="px-6 py-4 text-red-500 line-through opacity-75">geeadd copy</td>
<td class="px-6 py-4 text-green-600 dark:text-green-400 font-bold">geeadd assets
copy</td>
</tr>
<tr>
<td class="px-6 py-4 text-red-500 line-through opacity-75">geeadd move</td>
<td class="px-6 py-4 text-green-600 dark:text-green-400 font-bold">geeadd assets
move</td>
</tr>
<tr>
<td class="px-6 py-4 text-red-500 line-through opacity-75">geeadd delete</td>
<td class="px-6 py-4 text-green-600 dark:text-green-400 font-bold">geeadd assets
delete</td>
</tr>
<tr>
<td class="px-6 py-4 text-red-500 line-through opacity-75">geeadd
delete_metadata</td>
<td class="px-6 py-4 text-green-600 dark:text-green-400 font-bold">geeadd assets
delete-meta</td>
</tr>
<tr>
<td class="px-6 py-4 text-red-500 line-through opacity-75">geeadd access</td>
<td class="px-6 py-4 text-green-600 dark:text-green-400 font-bold">geeadd assets
access</td>
</tr>
<tr>
<td class="px-6 py-4 text-red-500 line-through opacity-75">geeadd assetsize</td>
<td class="px-6 py-4 text-green-600 dark:text-green-400 font-bold">geeadd assets
size</td>
</tr>
</tbody>
</table>
</div>
</details>
<!-- Group: Tasks -->
<details
class="group bg-white dark:bg-dark-surface border border-gray-200 dark:border-dark-border rounded-xl shadow-sm overflow-hidden">
<summary
class="flex items-center justify-between p-5 cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800/50 transition-colors">
<div class="flex items-center gap-3">
<div
class="p-2 bg-orange-100 dark:bg-orange-900/30 text-orange-600 dark:text-orange-400 rounded-lg">
<i data-lucide="list-checks" size="20"></i>
</div>
<div>
<h3 class="font-bold text-slate-900 dark:text-white text-lg">Tasks Group</h3>
<p class="text-sm text-slate-500 dark:text-slate-400">List, Status, Cancel</p>
</div>
</div>
<i data-lucide="chevron-down" class="rotate-icon text-gray-400"></i>
</summary>
<div
class="p-0 border-t border-gray-100 dark:border-gray-700 bg-gray-50/50 dark:bg-gray-900/20">
<table class="min-w-full divide-y divide-gray-200 dark:divide-gray-700">
<thead class="bg-gray-50 dark:bg-gray-800">
<tr>
<th
class="px-6 py-4 text-left text-xs font-bold text-gray-500 uppercase tracking-wider">
Old Command</th>
<th
class="px-6 py-4 text-left text-xs font-bold text-gray-500 uppercase tracking-wider">
New Command</th>
</tr>
</thead>
<tbody
class="bg-white dark:bg-dark-surface divide-y divide-gray-200 dark:divide-gray-700 font-mono text-sm">
<tr>
<td class="px-6 py-4 text-red-500 line-through opacity-75">geeadd tasks</td>
<td class="px-6 py-4 text-green-600 dark:text-green-400 font-bold">geeadd tasks
list</td>
</tr>
<tr>
<td class="px-6 py-4 text-red-500 line-through opacity-75">geeadd cancel</td>
<td class="px-6 py-4 text-green-600 dark:text-green-400 font-bold">geeadd tasks
cancel</td>
</tr>
</tbody>
</table>
</div>
</details>
<!-- Group: Utils -->
<details
class="group bg-white dark:bg-dark-surface border border-gray-200 dark:border-dark-border rounded-xl shadow-sm overflow-hidden">
<summary
class="flex items-center justify-between p-5 cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800/50 transition-colors">
<div class="flex items-center gap-3">
<div
class="p-2 bg-purple-100 dark:bg-purple-900/30 text-purple-600 dark:text-purple-400 rounded-lg">
<i data-lucide="wrench" size="20"></i>
</div>
<div>
<h3 class="font-bold text-slate-900 dark:text-white text-lg">Utils Group</h3>
<p class="text-sm text-slate-500 dark:text-slate-400">Search, Reports, App2Script
</p>
</div>
</div>
<i data-lucide="chevron-down" class="rotate-icon text-gray-400"></i>
</summary>
<div
class="p-0 border-t border-gray-100 dark:border-gray-700 bg-gray-50/50 dark:bg-gray-900/20">
<table class="min-w-full divide-y divide-gray-200 dark:divide-gray-700">
<thead class="bg-gray-50 dark:bg-gray-800">
<tr>
<th
class="px-6 py-4 text-left text-xs font-bold text-gray-500 uppercase tracking-wider">
Old Command</th>
<th
class="px-6 py-4 text-left text-xs font-bold text-gray-500 uppercase tracking-wider">
New Command</th>
</tr>
</thead>
<tbody
class="bg-white dark:bg-dark-surface divide-y divide-gray-200 dark:divide-gray-700 font-mono text-sm">
<tr>
<td class="px-6 py-4 text-red-500 line-through opacity-75">geeadd search</td>
<td class="px-6 py-4 text-green-600 dark:text-green-400 font-bold">geeadd utils
search</td>
</tr>
<tr>
<td class="px-6 py-4 text-red-500 line-through opacity-75">geeadd app2script
</td>
<td class="px-6 py-4 text-green-600 dark:text-green-400 font-bold">geeadd utils
app2script</td>
</tr>
<tr>
<td class="px-6 py-4 text-red-500 line-through opacity-75">geeadd ee_report</td>
<td class="px-6 py-4 text-green-600 dark:text-green-400 font-bold">geeadd utils
report</td>
</tr>
</tbody>
</table>
</div>
</details>
</div>
</section>
<hr class="border-gray-100 dark:border-gray-800 mb-16">
<!-- AUTH GROUP -->
<div class="mb-10"><span class="text-sm font-bold text-brand-500 uppercase tracking-wider">Group:
Auth</span></div>
<section id="auth-service" class="mb-20 scroll-mt-28">
<h3 class="text-xl font-bold text-slate-900 dark:text-white mb-4">Service Account Authentication</h3>
<p class="mb-4 text-slate-600 dark:text-slate-400">
Configure and manage authentication using Service Account JSON keys. This enables headless
operations
and automated workflows.
</p>
<div
class="bg-amber-50 dark:bg-amber-900/20 p-4 rounded-xl border border-amber-200 dark:border-amber-800 mb-6">
<h4 class="text-sm font-bold text-amber-800 dark:text-amber-200 mb-2 flex items-center gap-2">
<i data-lucide="shield-alert" size="16"></i> Important Prerequisites
</h4>
<p class="text-xs text-amber-700 dark:text-amber-300 mb-3">
The Service Account must be in a Google Cloud Project with the <strong>Earth Engine API
enabled</strong> and the project registered. Ensure the Service Account has the following
roles (or higher):
</p>
<ul class="list-disc list-inside text-xs text-amber-700 dark:text-amber-300 space-y-1 ml-1">
<li><strong>Earth Engine Resource Viewer (beta):</strong> Viewer of all Earth Engine resources.
</li>
<li><strong>Service Usage Consumer:</strong> Ability to inspect service states and consume
quota.
</li>
</ul>
</div>
<div class="bg-slate-900 rounded-xl overflow-hidden shadow-lg border border-slate-800 group mb-6">
<div class="bg-slate-950 px-4 py-2 flex justify-between items-center border-b border-slate-800">
<div class="flex gap-1.5">
<div class="w-3 h-3 rounded-full bg-red-500"></div>
<div class="w-3 h-3 rounded-full bg-yellow-500"></div>
<div class="w-3 h-3 rounded-full bg-green-500"></div>
</div>
<span class="text-xs text-slate-500 font-mono">Terminal</span>
</div>
<div class="relative">
<span class="text-xs text-slate-500 block font-mono px-4 pt-4"># Check help for flags</span>
<pre
class="font-mono text-sm text-white"><code>geeadd auth -h
--cred Path to service account JSON credentials file
--remove Remove stored service account credentials
--status Show current authentication status</code><button class="copy-btn text-white text-xs px-2 py-1 rounded" onclick="copyCode(this)">Copy</button></pre>
</div>
</div>
<div class="bg-slate-900 rounded-xl overflow-hidden shadow-lg border border-slate-800 group">
<div class="bg-slate-950 px-4 py-2 flex justify-between items-center border-b border-slate-800">
<div class="flex gap-1.5">
<div class="w-3 h-3 rounded-full bg-red-500"></div>
<div class="w-3 h-3 rounded-full bg-yellow-500"></div>
<div class="w-3 h-3 rounded-full bg-green-500"></div>
</div>
<span class="text-xs text-slate-500 font-mono">Terminal</span>
</div>
<div class="relative">
<span class="text-xs text-slate-500 block font-mono px-4 pt-4"># Authenticate with key</span>
<pre class="font-mono text-sm text-white"><code>geeadd auth --cred "/path/to/service-account-key.json"
</code><button class="copy-btn text-white text-xs px-2 py-1 rounded" onclick="copyCode(this)">Copy</button></pre>
</div>
</div>
</section>
<!-- PROJECTS GROUP -->
<div class="mb-10 border-t border-gray-100 dark:border-gray-800 pt-10"><span
class="text-sm font-bold text-brand-500 uppercase tracking-wider">Group:
Projects</span></div>
<section id="projects-quota" class="mb-20 scroll-mt-28">
<h3 class="text-xl font-bold text-slate-900 dark:text-white mb-4">Quota & Configuration</h3>
<p class="mb-4 text-slate-600 dark:text-slate-400">
The Quota tool is your primary utility for monitoring Earth Engine storage and asset counts.
It automatically detects whether you are using a legacy folder or a Google Cloud Project.
</p>
<div class="grid md:grid-cols-2 gap-6 mb-6">
<div class="bg-slate-900 rounded-xl overflow-hidden shadow-lg border border-slate-800 group">
<div class="bg-slate-950 px-4 py-2 flex justify-between items-center border-b border-slate-800">
<div class="flex gap-1.5">
<div class="w-3 h-3 rounded-full bg-red-500"></div>
<div class="w-3 h-3 rounded-full bg-yellow-500"></div>
<div class="w-3 h-3 rounded-full bg-green-500"></div>
</div>
<span class="text-xs text-slate-500 font-mono">Terminal</span>
</div>
<div class="relative">
<span class="text-xs text-slate-500 block font-mono px-4 pt-4"># Check all accessible
quotas</span>
<pre class="font-mono text-sm text-white"><code>geeadd projects quota
</code><button class="copy-btn text-white text-xs px-2 py-1 rounded" onclick="copyCode(this)">Copy</button></pre>
</div>
</div>
<div class="bg-slate-900 rounded-xl overflow-hidden shadow-lg border border-slate-800 group">
<div class="bg-slate-950 px-4 py-2 flex justify-between items-center border-b border-slate-800">
<div class="flex gap-1.5">
<div class="w-3 h-3 rounded-full bg-red-500"></div>
<div class="w-3 h-3 rounded-full bg-yellow-500"></div>
<div class="w-3 h-3 rounded-full bg-green-500"></div>
</div>
<span class="text-xs text-slate-500 font-mono">Terminal</span>
</div>
<div class="relative">
<span class="text-xs text-slate-500 block font-mono px-4 pt-4"># Specific Cloud
Project</span>
<pre class="font-mono text-sm text-white"><code>geeadd projects quota --project "projects/my-project"
</code><button class="copy-btn text-white text-xs px-2 py-1 rounded" onclick="copyCode(this)">Copy</button></pre>