A land drawing tool contrib module for farmOS 3.x.
Note: Some branches and tags include only the built module. See the development branch for the full source code.
Use Composer and Drush to install farmOS_land_drawing_tool in farmOS 3.x;
composer require drupal/farmos_land_drawing_tool
drush en farmos_land_drawing_tool
Available released versions can be viewed at https://www.drupal.org/project/farmos_land_drawing_tool
From the development branch of this repository:
Start/recreate the farmOS container;
cd docker/
./destroy_and_recreate_containers.sh
Run the dev proxy server;
npm install
npm run dev
Access the demo page at http://localhost:8080/asset/draw/land
From the development branch of this repository:
# Add/commit your changes
git add [...]
# Update NPM package version and commit
npm --no-git-tag-version version --force patch
git add -u
git commit
# Tag the release with the unbuilt prefix
git tag unbuilt-v9000.0.1
# Push the development branch and new tag
git push --atomic origin HEAD:development unbuilt-v9000.0.1