-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* (chore) fixes to build ci * upgrades next version and ci * adds pnpm action * updates pnpm action name * updates pnpm packages * downgrades next version * locks flexsearch version
- Loading branch information
Showing
4 changed files
with
1,687 additions
and
957 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,17 @@ | ||
# O3 Docs | ||
# React Form Engine and OHRI Docs | ||
|
||
This documentation is intended to enable users to utilize the features of the React Form Engine (RFE). | ||
This documentation is intended to enable users to utilize the features of the React Form Engine (RFE) as well as OHRI associated packages. | ||
|
||
Local Development | ||
|
||
To install the dependancies run: | ||
```bash | ||
yarn | ||
pnpm install | ||
``` | ||
|
||
To build the project run: | ||
To start the dev server on port 3000 run: | ||
```bash | ||
yarn build | ||
``` | ||
|
||
To start the dev server run: | ||
```bash | ||
yarn dev | ||
pnpm run dev | ||
``` | ||
|
||
The documentation website for the React Form Engne https://ohri-docs.globalhealthapp.net. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,41 @@ | ||
{ | ||
"name": "@ohri/docs", | ||
"version": "0.1.0", | ||
"description": "Documentation for React Form Engine for O3 and OHRI packages.", | ||
"author": "OHRI", | ||
"license": "MPL-2.0", | ||
"scripts": { | ||
"dev": "next dev", | ||
"build": "next build", | ||
"start": "next start" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/UCSF-IGHS/ohri-docs.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/UCSF-IGHS/ohri-docs/issues" | ||
}, | ||
"homepage": "https://ohri-docs.globalhealthapp.net/", | ||
"dependencies": { | ||
"@tailwindcss/typography": "^0.5.9", | ||
"autoprefixer": "^10.4.14", | ||
"next": "^13.2.4", | ||
"nextra": "^2.2.20", | ||
"nextra-theme-docs": "^2.2.20", | ||
"next": "^13.0.6", | ||
"nextra": "^2.13.2", | ||
"nextra-theme-docs": "^2.13.2", | ||
"postcss": "^8.4.21", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"sharp": "^0.32.0", | ||
"tailwindcss": "^3.2.7" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "18.11.10", | ||
"typescript": "^4.9.3" | ||
}, | ||
"pnpm": { | ||
"overrides": { | ||
"flexsearch": "0.7.31" | ||
} | ||
} | ||
} |
Oops, something went wrong.