Precio is a comprehensive solution designed to assist modern farmers in optimizing their agricultural operations. This document serves as a guide for developers and users of Precio, providing information on the project's features, functionality, and usage. The software is available under the MIT License.
Precio is an open-source software tool for monitoring, automating and visualizing farming data. It provides real-time data analysis and insights into farming, enabling informed decision-making and improving farming efficiency. Precio includes third-party integration and is designed to be user-friendly, optimizing resource usage, reducing waste, and increasing productivity.
This application is intended for any agricultural enthusiast and developers looking forward to contributing to precision farming applications.
git clone [https://github.com/suryan-s/Precio](https://github.com/suryan-s/Precio)
python setup.py
python main.py
Precio
ββ .gitignore
ββ .vscode
β ββ settings.json
ββ arduino
β ββ PMS.ino
β ββ Weather Monitoring Station
β β ββ WMS-GERBER-img.jpg
β β ββ WMS-GERBER-PDF.pdf
β β ββ WMS-GERBER-PNG.png
β β ββ WMS-GERBER.zip
β ββ WMS.ino
ββ database
β ββ .gitkeep
ββ endpoints.py
ββ frontend
β ββ package-lock.json
β ββ package.json
β ββ public
β β ββ vite.svg
β ββ README.md
β ββ src
β β ββ App.svelte
β β ββ assets
β β β ββ svelte.svg
β β ββ lib
β β β ββ components
β β β β ββ Button.svelte
β β β β ββ Fab.svelte
β β β β ββ Modal.svelte
β β β β ββ Sidebar.svelte
β β β ββ composites
β β β β ββ CreateProject.svelte
β β β β ββ Layout.svelte
β β β β ββ Sidenav.svelte
β β β ββ routes
β β β β ββ dashboard.svelte
β β β β ββ Home.svelte
β β β β ββ routes.js
β β β ββ stores.js
β β ββ main.js
β β ββ vite-env.d.ts
β ββ svelte.config.js
β ββ vite.config.js
ββ index.html
ββ LICENSE
ββ main.py
ββ model
β ββ best_pretemp.h5
ββ requirements.txt
ββ settings.json
ββ setup.py
ββ _README.md
Precio offers the following features:
Real-time monitoring of critical data required for the governance of farming operations.
Intuitive visualization features for better data analysis and insights.
Easy integration with third-party tools and devices.
User-friendly interface for streamlined operations and reduced resource usage.
Support for following farming practices for greater flexibility:
Support for actuators and actions for improved efficiency with Telegram integration:
IoT integration could be implemented by connecting to localhost/api/WMS/{api_token} or localhost/api/PMS/{api_token}
To start contributing to the project, clone the repository into your local system subdirectory using the below git code:
https://github.com/suryan-s/Precio.git
Before cloning the repository, make sure to navigate to the working subdirectory of your command line interface and ensure that no folder with the same name exists. Other ways to clone the repository include using a password-protected SSH key, or by using Git CLI. The changes may additionally be performed by opening this repo using GitHub Desktop
Before opening a Pull Request, it is recommended to have a look at the full contributing page to make sure your code complies with all the pull request guidelines.
Navigate to this subdirectory, & check the status of all files that were altered (red) by running the below code in Git Bash:
git status
Stage all your files that are to be pushed into your pull request. This can be done in two ways - stage all or some files:
git add . // adds every single file that shows up red when running the git status
git add <filename> // type in the particular file that you would like to add to the PR
Commit all the changes that you've made and describe in brief the changes that you have made using this command:
git commit -m "<commit_message>"
Push all of your updated work into this GitHub repo in the form of a Pull Request by running the following command:
git push origin main