/life-system

Monitor your life

Primary LanguagePHPMIT LicenseMIT

release 1.4.0

Overview

Life system is built to watch your daily life and utilize your time and money wisely.

Setup Instructions

Development

  1. Copy .env.example to .env file and update the variables accordingly
cp .env.example .env
  1. 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
  1. Migrate and seed the database
docker exec -it mymonitor_app php migrate.php
docker exec -it mymonitor_app php seed.php
  1. Compile the assets
docker exec -it mymonitor_app npm run build:css
  1. Open up the browser and navigate to http://localhost:3000/
  2. Run the following to shut down the services on finish
docker-compose down