Skip to content

A self-hosted web-based tool to invite and manage participants for research studies (e.g., user experience, psychology, market research, customer experience).

License

Notifications You must be signed in to change notification settings

psyflo/participantpool

Repository files navigation

ParticipantPool

ParticipantPool is a self-hosted web-based tool to invite and manage participants for research studies (e.g., user experience, psychology, market research, customer experience).

This software was developed with Laravel PHP Framework and Vue JavaScript Framework.

Visit https://mmi.psychologie.unibas.ch/participantpool/ for a live version.

Screenshots

Steps to setup application with XAMPP

  1. Clone the repository or download a zip file
  2. Install XAMPP (https://www.apachefriends.org/index.html)
  3. Install composer (https://getcomposer.org/) and node.js (https://nodejs.org/en/)
  4. Install php 8.1+ on your system or use the php version provided with XAMPP
  5. Move the contents of the repository participantpool in the subfolder htdocs of XAMPP (e.g., /Applications/XAMPP/htdocs/participantpool)
  6. Open a Terminal and navigate to this folder
  7. Run composer and npm
$ composer install
$ npm install
  1. Make a copy of the environment file
cp .env.example .env
nano .env
  1. Set the correct APP_URL in .env (e.g.,APP_URL=http://localhost/participantpool/public)
  2. Change database settings in .env
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=participantpool # make sure you create this database
DB_USERNAME=participantpool # or use root on a local system
DB_PASSWORD=participantpool # use the password you defined in mysql
  1. Set correct URL in webpack (e.g., /participantpool/public/)
nano webpack.admin.mix.js
nano webpack.mix.js
  1. Make sure XAMPP has access to the storage folder
chmod -R 777 storage  
  1. Generate php artisan key
/Applications/XAMPP/bin/php-8.1.6 artisan key:generate
  1. Set up database (with example)
/Applications/XAMPP/bin/php-8.1.6 artisan migrate:fresh --seed
  1. Compile development version
npm run dev
  1. Compile vue development resources
npm run vue
  1. Run Apache Web Server and the MySQL Database in your XAMPP manager
  2. Navigate to your participantpool instance:
  • http://localhost/participantpool/public/
  • Log in with default admin user

Funded by

About

A self-hosted web-based tool to invite and manage participants for research studies (e.g., user experience, psychology, market research, customer experience).

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published