Life system is built to watch your daily life and utilize your time and money wisely.
- Copy
.env.example
to.env
file and update the variables accordingly
cp .env.example .env
- Run the following command to start the docker services. If you don't have docker installed, then head to the docs to install Docker.
docker-compose up -d
- Migrate and seed the database
docker exec -it mymonitor_app php migrate.php
docker exec -it mymonitor_app php seed.php
- Compile the assets
docker exec -it mymonitor_app npm run build:css
- Open up the browser and navigate to http://localhost:3000/
- Run the following to shut down the services on finish
docker-compose down