Skip to content

concord-consortium/flooding-model

Repository files navigation

Flooding Model

Latest stable version:

https://flood.concord.org

A particular model can be loaded using preset URL parameter, e.g.:

https://flood.concord.org/index.html?preset=iowa

Latest development version:

https://flood.concord.org/branch/master/index.html

Configuration

Available presets:

https://github.com/concord-consortium/flooding-model/blob/production/src/presets.ts

All the available options can be seen here (including default values):

https://github.com/concord-consortium/flooding-model/blob/production/src/config.ts

Note that these URLs point to production branch. If you're working with master or other branch, you might want to replace production with your branch name.

The final configuration is build using default configuration, preset options and URL parameters. URL parameters have higher priority than preset options (so it's possible to customize a preset).

Development

  1. Clone this repo and cd into it
  2. Run npm install to pull dependencies
  3. Run npm start to run webpack-dev-server in development mode with hot module replacement

Building

If you want to build a local version run npm build, it will create the files in the dist folder. You do not need to build to deploy the code, that is automatic. See more info in the Deployment section below.

Deployment

Production releases to S3 are based on the contents of the /dist folder and are built automatically by Travis for each branch pushed to GitHub and each merge into production.

Merges into production are deployed to https://flood.concord.org.

Other branches are deployed to https://flood.concord.org/branch/.

You can view the status of all the branch deploys here.

Testing

Run npm test to run jest tests. Run npm run test:full to run jest and Cypress tests.

Cypress Run Options

Inside of your package.json file:

  1. --browser browser-name: define browser for running tests
  2. --group group-name: assign a group name for tests running
  3. --spec: define the spec files to run
  4. --headed: show cypress test runner GUI while running test (will exit by default when done)
  5. --no-exit: keep cypress test runner GUI open when done running
  6. --record: decide whether or not tests will have video recordings
  7. --key: specify your secret record key
  8. --reporter: specify a mocha reporter
Cypress Run Examples
  1. cypress run --browser chrome will run cypress in a chrome browser
  2. cypress run --headed --no-exit will open cypress test runner when tests begin to run, and it will remain open when tests are finished running.
  3. cypress run --spec 'cypress/integration/examples/smoke-test.js' will point to a smoke-test file rather than running all of the test files for a project.

License

Starter Projects are Copyright 2020 (c) by the Concord Consortium and is distributed under the MIT license.

See license.md for the complete license text.