Applications & tools for Community-Based Organizations (CBOs) to work together more effectively
Перейти к файлу
Chris Trevino 2d5050390b add developing instructions 2021-08-26 10:03:19 -07:00
.devcontainer add devcontainer settings 2021-08-23 13:23:43 -07:00
.github add codeql config 2021-08-25 18:20:10 -07:00
.husky add +x to pre-commit script 2021-05-05 09:29:53 -07:00
.vim upgrade to yarn 3 2021-08-25 17:06:29 -07:00
.vscode upgrade to yarn 3 2021-08-25 17:06:29 -07:00
.yarn remove shx 2021-08-25 17:37:25 -07:00
packages add developing instructions 2021-08-26 10:03:19 -07:00
.eslintignore upgrade to yarn 3 2021-08-25 17:06:29 -07:00
.eslintrc Add ability for admin to reset user password, user to be able to set their own password and enable check to make sure role type matches 2021-06-03 16:57:45 -07:00
.gitattributes Merged PR 53554: greenlight -> resolve in code; add robots.txt 2021-07-13 21:41:34 +00:00
.gitignore remove hot webapp plumbing 2021-08-25 16:49:48 -07:00
.lintstagedrc.json update .lintstagedrc 2021-05-05 09:31:11 -07:00
.pnp.cjs update .pnp.cjs 2021-08-25 18:08:11 -07:00
.prettierignore upgrade to yarn 3 2021-08-25 17:06:29 -07:00
.prettierrc.json Added websocket connection to apollo and subscribe to engagements 2021-06-17 16:03:58 -07:00
.vsts-ci.yml remove deprecated webapp deploy steps 2021-08-25 16:39:51 -07:00
.yarnrc.yml upgrade to yarn 3 2021-08-25 17:06:29 -07:00
CODE_OF_CONDUCT.md Merged PR 54772: Rename packages 2021-08-13 00:53:05 +00:00
CONTRIBUTING.md Merged PR 54772: Rename packages 2021-08-13 00:53:05 +00:00
DEVELOPMENT.md Merged PR 54772: Rename packages 2021-08-13 00:53:05 +00:00
LICENSE Merged PR 54772: Rename packages 2021-08-13 00:53:05 +00:00
README.md add developing instructions 2021-08-26 10:03:19 -07:00
babel.config.js Merged PR 53235: move codeql to separate task 2021-07-02 23:01:51 +00:00
package.json update tenant client builds to use tenantized config 2021-08-25 12:57:10 -07:00
tsconfig.json typescript updates 2021-05-04 13:06:30 -07:00
yarn.lock update copy step 2021-08-25 17:36:40 -07:00

README.md

Community-Based Organization Operations Suite (CBO Suite)

The CBO Suite is a case-management web application that enables CBOs and members of CBOs to work together more effectively.

Developing

Prerequisites

  • NodeJS LTS Release
  • Yarn v1 global installation (npm i -g yarn)
  • docker-compose OR a MongoDB connection string defined in the environment variable DB_CONNECTION_STRING

To begin developming the app locally:

If DB_CONNECTION_STRING environment variable is defined:

> yarn build:schema
> yarn start:

If using docker-compose

-- Shell 1 --
> yarn build:schema
> yarn start:api:local

-- Shell 2 --
> yarn start:webapp