BingSubjects is an Open Source Database for tracking research subjects across a variety of research studies.
- Clone the repo locally:
git clone https://github.com/BinghamtonUniversity/BingSubjects.git
- Install Composer Dependencies:
composer install
- Copy the
.env.enample
file to.env
- 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;
- Modify the
.env
file as follows:
DB_DATABASE=bingsubjects
DB_USERNAME=bingsubjects
DB_PASSWORD=bingsubjects
- Generate App Key:
php artisan key:generate
- Run Migrations & Seed Database:
php artisan migrate:refresh --seed
- Serve the application
php artisan serve
IAMBing is open-source software licensed under the MIT license.