/Apollo

Primary LanguagePHP

Apollo

Apollo is a tool for nurses to record patient's blood pressure readings.

Requirements

PHP Extensions

  • gd
  • fileinfo
  • pdo_sqlite
  • pdo_mysql (Optional)

Installation

Clone the repository and enter the project folder.

  git clone https://github.com/lyriad/Apollo.git
  cd Apollo

Install Composer and NPM dependencies.

  composer install
  npm install

Create a .env file from the example environment file, and setup the necessary variables.

  cp .env.example .env

Generate a new application key.

  php artisan key:generate

Perform database migrations. Default database driver is SQLite, but you can change this in the .env file.

  php artisan migrate

Seed database with sample data.

  php artisan db:seed

Compile assets and generate Mix manifest.

  npm run dev

Run the application.

  php artisan serve