An open-source web qualitative analysis software to support coding on PDF files.
Build with Laravel.
- PHP 7.4
- SQL Database (MySQL or Postgres)
- Composer (v2.0.11)
For more informations about how to deploy Laravel applications or how to setup HTTP servers for them see https://laravel.com/docs/8.x/deployment.
- Create a copy of the file
.env.example
with the name.env
- Open this new file and change the configurations as needed
- Don't forget to set up corretely your database config
- Open a terminal inside the project folder
- Run
composer install --optimize-autoloader --no-dev
to install composer dependencies - Run
npm install
to install JS dependencies - Run
npm run prod
to compile JS dependencies - Run
php artisan key:generate
to generate the application key - Optimize the application by running the following commands:
php artisan route:cache
php artisan view:cache
- Run
php artisan config:cache
to apply the previous changes to the .env file - Run
php artisan migrate
to create the database
- Update application files
- Open a terminal inside the project folder
- Run
composer install --optimize-autoloader --no-dev
to update composer dependencies - Run
npm install
to install JS dependencies - Run
npm run prod
to compile JS dependencies - Optimize the application by running the following commands:
php artisan route:cache
php artisan view:cache
- Run
php artisan config:cache
- Run
php artisan migrate
to update database structure
- PHP 7.4
- MySQL
- Nodejs (v14.16.0)
- Composer (v2.0.11)
- Clone this repository
- Create a copy of the file
.env.example
with the name.env
- Open this new file and change the configurations as needed
- Don't forget to set up corretely your database config
- Open a terminal inside the project folder
- Run
npm install
to install npm dependencies - Run
npm run dev
to compile JS dependencies - Run
composer install
to install composer dependencies - Run
php artisan key:generate
to generate the application key - Run
php artisan config:cache
to apply the previous changes to the .env file - Run
php artisan migrate --seed
to create the database
You may run npm run watch
to watch for changes on assets files and recompile them automatically
- You may run the project by simply opening a terminal inside the project folder and running
php artisan serve
. The address to access the system will be printed.