Samudralaya is a web application that aims to create awareness about marine life conservation. It provides information about marine life. It also provides a platform for users to report marine life sightings and incidents. Users can also report illegal activities like fishing in marine protected areas or poaching. The application also provides news and articles related to marine life.
- Faizal Abdillah (Project Manager)
- Bintang Fajar Mauludin (UI/UX Designer)
- Deara Mayanda (UI/UX Designer)
- Muhammad Asyraf Faiz Kamil (Fullstack Developer)
- Sadam Alfian Pradana (Fullstack Developer)
- User Authentication
- User Profile
- Marine Life News and Articles
- Encyclopedia of Marine Life
- Report Incidents
- Report Illegal Activities
- Laravel
- Inertia.js
- React
- Tailwind CSS
- MySQL
- Clone the repository
git clone
- Install the dependencies
composer install
npm install
- Create a .env file
cp .env.example .env
- Generate the application key
php artisan key:generate
- Update the .env file with the database credentials
DB_CONNECTION=mysql
DB_HOST=127.0.0.1 // your database host
DB_PORT=3306 // your database port
DB_DATABASE=samudralaya
DB_USERNAME=root // your database username
DB_PASSWORD= // your database password
- Migrate the database and seed the database
php artisan migrate:fresh --seed
- Link the storage folder
php artisan storage:link
php artisan serve
npm run dev