Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
80da8ef
initial dashboard port
Apr 14, 2026
2fbc6fe
Update readme; get and load agent reports
js-2026-git Apr 15, 2026
3a61fe3
Update readme; update agents page
js-2026-git Apr 16, 2026
f758714
Update package.json with angular cli depdendency
Lagejohn Apr 17, 2026
1fcae52
Merge remote-tracking branch 'refs/remotes/origin/feature/angular-por…
Lagejohn Apr 21, 2026
15145f1
Add toastr notification service, fix some dependencies
Lagejohn Apr 30, 2026
e45d879
Fix selection behavior in agents table
Lagejohn Apr 30, 2026
205f357
add manage agents dialog component
Lagejohn May 1, 2026
8392595
implement remaining UI elements in manage dialog
Lagejohn May 1, 2026
7f75259
implement populated ARI select inputs, support parameters
Lagejohn May 7, 2026
85fd714
Finish agents manage dialog implementation, adjust API paths, make co…
Lagejohn May 11, 2026
c1aab8a
Add version number to header, defined in environment file
Lagejohn May 11, 2026
387991f
Add .yang downloading, uploading still WIP
Lagejohn May 12, 2026
37536bd
refactor manage UI to be reusable, modular component external to agents
Lagejohn May 12, 2026
7993981
Merge branch 'main' into feature/angular-port
May 13, 2026
00a1c69
implement builds page
Lagejohn May 13, 2026
2c37756
implement 'send to agents' button and command handoff functionality f…
Lagejohn May 13, 2026
34edb97
allow sending primitive types in ARI builder
May 14, 2026
ffb50bd
updated to use new report route
May 14, 2026
2680422
Merge branch 'feature/angular-port' of https://github.com/NASA-AMMOS/…
May 14, 2026
ce1c74e
removed extra log
May 14, 2026
96b09d6
implement logout redirect for header logout button
Lagejohn May 14, 2026
c03bfbd
Merge remote-tracking branch 'refs/remotes/origin/feature/angular-por…
Lagejohn May 14, 2026
dd293e3
fixing issue with uploading new ADM
May 18, 2026
7e30704
added ARI column to builder table
May 18, 2026
dd8c21f
Replace Vue UI at top level anms-ui dir
Lagejohn May 26, 2026
4f3c9b0
Fix insecure path in help to use environment constant, fix syntax typ…
Lagejohn May 27, 2026
b477343
Merge remote-tracking branch 'origin/main' into feature/angular-port
Lagejohn May 27, 2026
2403594
update containerfile, remove vestigial files
Lagejohn May 28, 2026
c5d2c61
update UI readme
Lagejohn May 28, 2026
1073beb
fix incorrect path in UI build steps
Lagejohn May 29, 2026
47dcaec
Debug containerfile printouts
Lagejohn May 29, 2026
006d4a5
Debug containerfile printouts
Lagejohn May 29, 2026
3af3e1c
Debug containerfile printouts
Lagejohn May 29, 2026
3fc69a3
Debug containerfile printouts
Lagejohn May 29, 2026
a1589fb
Debug containerfile printouts
Lagejohn May 29, 2026
030d97f
add package-lock.json to vcs for ci, adjust gitignore
Lagejohn May 29, 2026
f3e0af9
add docker debug call
Lagejohn May 29, 2026
ada9f82
fix working dir of npm tasks
Lagejohn May 29, 2026
dfb4c46
sync package-lock.json
Lagejohn May 29, 2026
1c64cf0
Add npm i to anms-ui install
Lagejohn Jun 1, 2026
242d184
update installed node version from v16 to v22
Lagejohn Jun 1, 2026
02168a5
fix node rpm url
Lagejohn Jun 1, 2026
b2a04d3
update addresses in ui routes test
Lagejohn Jun 1, 2026
0ce12eb
restore necessary frontend server files, adjust container composition
Lagejohn Jun 2, 2026
3c52733
Merge remote-tracking branch 'origin/main' into feature/angular-port
Lagejohn Jun 3, 2026
8196c12
Fixed typo in grafana dashbaord title
DavidEdell Jun 3, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,3 @@ docker-compose.override.yml

# Javascript and ESLint related content to be ignored
node_modules
package-lock.json
23 changes: 7 additions & 16 deletions anms-ui/.editorconfig
Original file line number Diff line number Diff line change
@@ -1,26 +1,17 @@
# © 2014 Johns Hopkins University Applied Physics Laboratory. All Rights Reserved.

# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org

# Editor configuration, see https://editorconfig.org
root = true

[*]

# We recommend you to keep these unchanged
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.{js, vue, html, css, json}]
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true

[*.py]
indent_style = space
indent_size = 4
[*.ts]
quote_type = single
ij_typescript_use_double_quotes = false

[*.md]
max_line_length = off
trim_trailing_whitespace = false
Loading
Loading