Skip to content
Snippets Groups Projects
a.croix's avatar
a.croix authored
Correction in WowaJob. Wowa detector selection was possible, but the computation was using all the feedbacks : corrected
2ec8be1b
History

MARK-WEB

Web interface for MARK server.

Cascade of detectors

Ranking produced by a detector

Report produced by a detector

System status

Demo mode

In demo mode, the user is directly logged in as administrator (no password required). To activate demo mode, change .env :

APP_ENV=demo

or set environment variable APP_ENV=demo.

Contributing

Start a mongodb container and a mark-example container so we have some data to display:

docker-compose up

Start Laravel integrated webserver

# install dependencies
composer install

# configure the app
cp .env.example .env
php artisan key:generate
# modify if needed
nano .env

# by default we use a SQLite database:
touch storage/app/db.sqlite
php artisan migrate

# start the integrated webserver
php artisan serve

The web interface is now available at http://127.0.0.1:8000

The default credentials are mark-admin@cylab.be : change-me!