This project tries to create a solution for managing your apiary needs.
Contributions are always welcome!
See contributing.md
for ways to get started.
Please adhere to this project's code of conduct
.
These are coming soon
To run this application you have to first have these installed:
-
php, composer, npm, mysql, laravel
-
And have cloned the repository
Then install the dependencies
composer install
npm install
Then create a .env file and copy the content from the .env.example file
cp .env.example .env
Then generate a key
php artisan key:generate
First migrate tables
php artisan migrate
Then to run the application
php artisan serve
and to apply the tailwind styles
npm run dev
You can now click the link that appeared when you ran the application
- Finish the functionality for keeping track of the harvest
To run this project, you will need to add the following environment variables to your .env file
You can either create a database with "CREATE DATABASE Laravel" before you migrate the database. Or create a new database with your preffered name and change the value of "DB_DATABASE" in the .env file.
- Create a new queen.
- Create a new apiary and place it on the map.
- Create a new hive which belongs to a apiary.
- Adjust some of the values for a hive.
- Rest API which gets the data for a apiary and hive.
- See all apiaries and the hives for a specific apiary.
Client: Tailwind, Blade, HTML, CSS, Javascript, Livewire
Server: PHP, MySQL