https://github.com/atlasoflivingaustralia/biocollect
Biocollect front end application
https://github.com/atlasoflivingaustralia/biocollect
ala-product-biocollect
Last synced: about 1 month ago
JSON representation
Biocollect front end application
- Host: GitHub
- URL: https://github.com/atlasoflivingaustralia/biocollect
- Owner: AtlasOfLivingAustralia
- License: other
- Created: 2015-08-19T08:40:01.000Z (almost 10 years ago)
- Default Branch: develop
- Last Pushed: 2025-05-01T06:38:17.000Z (about 2 months ago)
- Last Synced: 2025-05-01T07:33:33.860Z (about 2 months ago)
- Topics: ala-product-biocollect
- Language: Groovy
- Homepage: https://biocollect.ala.org.au/
- Size: 2.08 GB
- Stars: 10
- Watchers: 16
- Forks: 15
- Open Issues: 400
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
BioCollect
==========## Build status
### Master branch
[](https://travis-ci.org/AtlasOfLivingAustralia/biocollect)### Develop branch
[](https://travis-ci.org/AtlasOfLivingAustralia/biocollect)## About
This repo is a fork of the [fieldcapture-hubs repo](https://github.com/AtlasOfLivingAustralia/fieldcapture-hubs) where the plugin has been promoted to become the host app. From the moment of creation of this repo BioCollect and Merit will go separate ways.The resulting project has been significantly refactored. All the MERIT inherited server side code base is now under the package name `au.org.ala.biocollect.merit`. It would be convenient to organically remove all the code that we won't be using in biocollect.
New server side classes that are custom to BioCollect should be under the package name `au.org.ala.biocollect`
## General Information
### Technologies
* Grails framework: 5.1.2
* Java 8
* Knockout JS
* JQuery 3.4.1
* Gradle
### Development Setup
* This project requires you to run the [ecodata project](https://github.com/AtlasOfLivingAustralia/ecodata) on port `8080`.
* [Use this guide to setup Biocollect in Intellij](setup.md)
### Running Grails4 version
Run BioCollect:
```
./gradlew bootRun
```To run BioCollect with support for hot-reloading of changes to the ecodata-client-plugin & ala-map-plugin, clone the ecodata-client-plugin & ala-map-plugin repositories into the same parent folder as the BioCollect project.
Run BioCollect with additional parameters:
```
./gradlew :bootRun -Dgrails.run.active=true -Pinplace=true
```Note the leading colon before the bootRun task - this is required as when inplace=true gradle is configured in a multi-project build configuration.
### Running Javascript automatic tests
* Executing the tests requires node.js
* It is recommended to install the Intellij node.js and karma plugins.
* To install the test dependencies, run the following command in the repo root folder:
```
npm install
```
* After that you can run the test directly from Intellij by right-clicking on the `karma.conf.js` file.