Masterzeye is a global project management system that allows the company to manage projects.
- Clone project than start the container
sail up -d
- Create a test user by executing
sail artisan tin
and paste the follow code (change <YOUR-PASSWORD>
for whatever you want, such as the name and email):
User::factory()->create([
'name' => 'Jane Doe',
'email' => 'jane.doe@masterzeye.com',
'password' => Hash::make('<YOUR-PASSWORD>'),
]);
- Open
http://localhost/
on browser, go to login and fill with those credentials;
This project is an open-sourced software licensed under the MIT license.