Medication Records

Web application for recording medications in a health agency.

Tech Stacks

  • Laravel 10
  • MySQL
  • (optional) Docker to create MySQL database in container
  • TailwindCSS + DaisyUI for styling

Download the SQL dump file here.

How to run

  1. Download the repo.
  2. Create .env file with .env.example file. Copy the db env variable below.
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=medicsdb
DB_USERNAME=laravel
DB_PASSWORD=password
  1. Import the sql dump file to the mysql database in your local computer.
  2. Install app dependencies by typing command composer install and npm install in the terminal.
  3. Run command npm run dev in the terminal.
  4. Run the app by typing command php artisan serve in the terminal.
  5. That's it! The app is already running. You can access it with your local browser by visiting http://localhost:8000.