Skip to content

Central Database for Binghamton University Research Subjects

Notifications You must be signed in to change notification settings

BinghamtonUniversity/BingSubjects

Repository files navigation

BingSubjects

BingSubjects is an Open Source Database for tracking research subjects across a variety of research studies.

Developer Installation Instructions

  1. Clone the repo locally: git clone https://github.com/BinghamtonUniversity/BingSubjects.git
  2. Install Composer Dependencies: composer install
  3. Copy the .env.enample file to .env
  4. Setup MySQL Databases:
$ mysql
> CREATE DATABASE bingsubjects;
> CREATE USER 'bingsubjects'@'127.0.0.1' IDENTIFIED BY 'bingsubjects';
> GRANT ALL PRIVILEGES ON bingsubjects. * TO 'bingsubjects'@'127.0.0.1';
> exit;
  1. Modify the .env file as follows:
DB_DATABASE=bingsubjects
DB_USERNAME=bingsubjects
DB_PASSWORD=bingsubjects
  1. Generate App Key: php artisan key:generate
  2. Run Migrations & Seed Database: php artisan migrate:refresh --seed
  3. Serve the application php artisan serve

License

IAMBing is open-source software licensed under the MIT license.

About

Central Database for Binghamton University Research Subjects

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages