WP7 UI
See our draft documentation site.
This site is built from the contents of the docs/ directory and hosted by Github pages.
Prerequisite: Node.js with npm.
cd <orphaned-wells-ui-path>
npm clean-installThis is the recommended local development path. It starts the frontend, backend, and MongoDB together.
- Node.js with npm
- Docker Desktop or Docker Engine
- Docker Compose v2, available as
docker compose - Docker running before you start the stack
cd <orphaned-wells-ui-path>
npm run docker:startThe app runs at http://localhost:3000.
The backend runs at http://localhost:8001.
The Docker-published dev ports bind to localhost by default.
For stop, clean, backend mode, seed data, and advanced Docker configuration, see deployment/README.md.
Use this option when you want to run only the React frontend outside Docker.
You will need a backend running separately and must point the frontend at it
with REACT_APP_BACKEND_URL.
Backend repository: https://github.com/CATALOG-Historic-Records/orphaned-wells-ui-server
cd <orphaned-wells-ui-path>
npm start