Skip to content

Commit

Permalink
Merge branch 'upstream-1.14.0' into develop
Browse files Browse the repository at this point in the history
# Conflicts:
#	src/components/flow/actions/sendmsg/SendMsgForm.tsx
#	src/components/flow/actions/sendmsg/helpers.ts
  • Loading branch information
jeremyist committed Nov 4, 2021
1 parent 060ad24 commit 20bbdc8
Show file tree
Hide file tree
Showing 244 changed files with 10,534 additions and 12,761 deletions.
6 changes: 5 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@
"jest": true
},
"rules": {
"prettier/prettier": ["error", { "singleQuote": true }]
"prettier/prettier": ["error", { "singleQuote": true }],
"no-prototype-builtins": 0,
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/camelcase": 0,
"@typescript-eslint/explicit-member-accessibility": 0
},
"settings": {
"react": {
Expand Down
382 changes: 382 additions & 0 deletions CHANGELOG.md

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

[![Build Status](https://github.com/nyaruka/floweditor/workflows/Build/badge.svg)](https://github.com/nyaruka/floweditor/actions?workflow=Build)
[![codecov](https://codecov.io/gh/nyaruka/floweditor/branch/master/graph/badge.svg)](https://codecov.io/gh/nyaruka/floweditor)
[![Maintainability](https://api.codeclimate.com/v1/badges/c2200da1ba5a0176836e/maintainability)](https://codeclimate.com/github/nyaruka/floweditor/maintainability)

This is a standalone flow editing tool designed for use within the [RapidPro](https://github.com/rapidpro/rapidpro) suite of messaging tools but can be adopted for use outside of that ecosystem. The editor is a React component built with TypeScript and bundled with Webpack. It is open-sourced under the AGPL-3.0 license.

Expand Down Expand Up @@ -33,7 +32,7 @@ Webpack is used to transpile TypeScript and SASS. After invoking a build, the co

### Development

To run the flow editor in development mode, it requires an asset server. This is what is responsible for serving up flow definitions, groups, contact fields, etc. This project includes an in memory asset server for testing purposes. These are the same lambda functions used by our netlify preview site.
To run the flow editor in development mode, it requires an asset server. This is what is responsible for serving up flow definitions, groups, contact fields, etc. This project includes an in memory asset server for testing purposes. These are the same lambda functions used by our Netlify preview site.

First, compile and run the local version for a faux asset server.

Expand Down
Loading

0 comments on commit 20bbdc8

Please sign in to comment.