THIS PROJECT DOESN'T BOTHER REGARDING SECURITY. IT'S UPTO YOU HOW YOU WANT TO IMPLEMENT SECURITY
This project comes with Docker. If using docker, to minimize the docker build time, the project requires to php, composer, node, npm or yarn in your local machine.
- Clone this repository.
- Copy your
docker-compose.yml.exampletodocker-compose.yml. Example:cp docker-compose.yml.example docker-compose.yml. - Update your
docker-compose.ymlwith appropriate values. - Copy
.env.exampleto.env. Example:cp .env.example .env. - Generate key using:
php artisan key:generate. - Update your
.envvariable values. composer installto install dependencies.yarn installornpm installto install JS dependencies.docker-compose up -d --buildto start the project containers.- Run
php artisan migrate:refresh --seedfrom container or outside the container. - Run
http://IP_ADDRESS:NGINX_PORT_NUMBERto run the project. Example:http://127.0.0.1:PORT_NUMBER. - Email:
[email protected]Password:123456 - If you update the code further, then make sure to run
yarn run devif changed inresource/js/app.jsresource/js/bootstrap.js.
N.B: If you're working locally, it's mandatory to download the requirements via composer & npm or yarn.