google-nomulus/console-webapp
gbrodman b2d8eec4f2 Refactor the way that the console BE parses POST bodies (#2113)
This includes two changes:
1. Creating a base string-type adapter for use parsing to/from JSON
   classes that are represented as simple strings
2. Changing the object-provider methods so that the POST bodies should
   contain precisely the expected object(s) and nothing else. This way,
   it's easier for the frontend and backend to agree that, for instance,
   one POST endpoint might accept exactly a Registrar object, or a list
   of Contact objects.
2023-08-17 15:51:21 -04:00
..
src Refactor the way that the console BE parses POST bodies (#2113) 2023-08-17 15:51:21 -04:00
.editorconfig Add new console backbone (#1876) 2023-01-05 16:23:40 -05:00
.eslintrc.json Add console UI main layout, settings page and contact settings (#1989) 2023-06-09 14:20:08 -04:00
.gitignore Add new console backbone (#1876) 2023-01-05 16:23:40 -05:00
.prettierignore Add console UI main layout, settings page and contact settings (#1989) 2023-06-09 14:20:08 -04:00
.prettierrc.json Add console UI main layout, settings page and contact settings (#1989) 2023-06-09 14:20:08 -04:00
angular.json Add console UI main layout, settings page and contact settings (#1989) 2023-06-09 14:20:08 -04:00
build.gradle Stop invoking npm when formatting Java (#2075) 2023-07-13 11:30:33 -04:00
buildscript-gradle.lockfile Add new console backbone (#1876) 2023-01-05 16:23:40 -05:00
dev-proxy.config.json Add Console Settings -> Security front-end (#2079) 2023-07-26 12:50:31 -04:00
gradle.lockfile Update Gradle to 8.2.1 (#2087) 2023-07-27 12:59:42 -04:00
karma.conf.js Add new console backbone (#1876) 2023-01-05 16:23:40 -05:00
package-lock.json Add better integration for console formatting check and apply (#2070) 2023-07-06 12:33:32 -04:00
package.json Add Console Settings -> Security front-end (#2079) 2023-07-26 12:50:31 -04:00
README.md Add tasks and deployment info to console docs (#1901) 2023-01-12 17:54:08 -05:00
tsconfig.app.json Add new console backbone (#1876) 2023-01-05 16:23:40 -05:00
tsconfig.json Angular v14 -> v15 update (#1903) 2023-01-11 14:46:48 -05:00
tsconfig.spec.json Add new console backbone (#1876) 2023-01-05 16:23:40 -05:00

ConsoleWebapp

A web application for managing Nomulus.

Status

Console webapp is currently under active development and some parts of it are expected to change.

Deployment

Webapp is deployed with the nomulus default service war to Google App Engine. During nomulus default service war build task, gradle script triggers the following:

  1. Console webapp build script buildConsoleWebappProd, which installs dependencies, assembles a compiled ts -> js, minified, optimized static artifact (html, css, js)
  2. Artifact assembled in step 1 then gets copied to core project web artifact location, so that it can be deployed with the rest of the core webapp

Development server

Run npm run start:dev to start both webapp dev server and API server instance. Navigate to http://localhost:4200/. The application will automatically reload if you change any of the source files.

Code scaffolding

Run ng generate component component-name to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module.

Build

Run ng build to build the project. The build artifacts will be stored in the dist/ directory.

Running unit tests

Run ng test to execute the unit tests via Karma.

Running end-to-end tests

Run ng e2e to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.

Further help

To get more help on the Angular CLI use ng help or go check out the Angular CLI Overview and Command Reference page.