Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/getodk/central-frontend
Vue.js based frontend for ODK Central
https://github.com/getodk/central-frontend
data-collection global-development global-health javascript mhealth odk social-impact vuejs
Last synced: 5 days ago
JSON representation
Vue.js based frontend for ODK Central
- Host: GitHub
- URL: https://github.com/getodk/central-frontend
- Owner: getodk
- License: apache-2.0
- Created: 2017-09-26T16:35:53.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-05-13T19:45:53.000Z (6 months ago)
- Last Synced: 2024-05-19T16:59:09.948Z (6 months ago)
- Topics: data-collection, global-development, global-health, javascript, mhealth, odk, social-impact, vuejs
- Language: JavaScript
- Homepage: https://docs.getodk.org/central-intro/
- Size: 13.6 MB
- Stars: 31
- Watchers: 7
- Forks: 54
- Open Issues: 64
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
- awesome-starred - getodk/central-frontend - Vue.js based frontend for ODK Central (vuejs)
README
# ODK Central Frontend
![Platform](https://img.shields.io/badge/platform-Vue.js-blue.svg)
[![License](https://img.shields.io/badge/license-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![Build status](https://circleci.com/gh/getodk/central-frontend.svg?style=shield)](https://circleci.com/gh/getodk/central-frontend)ODK Central is the [ODK](https://getodk.org/) server. It manages user accounts and permissions, stores form definitions, and allows data collection clients like ODK Collect to connect to it for form download and submission upload. ODK Central Frontend provides the frontend for ODK Central using Vue.js.
This repository contains the code for the frontend of ODK Central. The [`central-backend`](https://github.com/getodk/central-backend) repository contains the code for the backend API server. The [`central`](https://github.com/getodk/central) repository contains the Docker code for building and running a production Central stack. You can find release notes in the `central` repository.
**The `master` branch of this repository reflects ongoing development for the next version of ODK Central.** It may or may not be in sync with the `master` branch of the `central-backend` repository. For the latest stable version, see the [release tags](https://github.com/getodk/central-frontend/releases).
You can learn more about ODK Central by visiting the [docs](https://docs.getodk.org/central-intro/).
## Contributing
We need your help to make ODK Central Frontend as useful as possible! Please see the [Contribution Guide](/CONTRIBUTING.md) for detailed information on discussion forums, project policies, code guidelines, and an overview of the software architecture.
## Setting up your development environment
Follow these steps to set up your development environment:
- Install Node.js 20.
- Install dependencies by running `npm install`.
- Install NGINX.
- Set up [ODK Central Backend](https://github.com/getodk/central-backend).
- You will need to create a user using an ODK Central Backend command line script.
- You will probably also want to promote that user to a sitewide administrator.## Running in development
Follow these instructions to run ODK Central Frontend in development. For deploying to production, see the next section.
First, run ODK Central Backend.
Next, build ODK Central Frontend files for development by running `npm run dev`. The files will be outputted to `dist/`. As you update the source code, the files will be automatically rebuilt. `npm run dev` will also start NGINX, which will serve the files. NGINX effectively places ODK Central Frontend and ODK Central Backend at the same origin, avoiding cross-origin requests.
ODK Central Frontend will be available on port 8989.
ODK Central Frontend communicates with ODK Central Backend in part using a session cookie. The cookie is `Secure`, but will be sent over HTTP on localhost. ODK Central Frontend also interacts with data collection clients and with services:
- To upload an XLSForm, run [pyxform-http](https://github.com/getodk/pyxform-http). ODK Central Frontend communicates with pyxform-http through ODK Central Backend.
- You can use ODK Collect to scan an app user QR code, download a form, and submit data. One option to do so is to use [`ngrok`](https://ngrok.com/download). ODK Central Frontend is available on port 8989, so you can run `ngrok http 8989` to expose a temporary HTTPS URL that you can use. Within ODK Central Backend, you will also need to set the `default.env.domain` property in [`config/default.json`](https://github.com/getodk/central-backend/blob/master/config/default.json) to the HTTPS URL, then restart ODK Central Backend if it is already running.
- Enketo is a web form engine used to show form previews and allow for web-based data entry. Please see our [instructions](/docs/enketo.md) for optionally setting up an Enketo server for use in _development_ (it is already included in the production ODK Central stack).## Deploying to production
To build ODK Central Frontend files for production with minification, run `npm run build`. The files will be outputted to `dist/`. For more details on this command, see the [documentation](https://cli.vuejs.org/) for Vue CLI.
Note that this repository's `main.nginx.conf` is for development only.
For more information on deploying to production, see the [`central`](https://github.com/getodk/central) repository.