H E L L O F E N I X
Introduction to the fenix framework
-
create database:
$ mysql -p -u root
Enter password: rootroot
mysql> CREATE DATABASE hello;
musql> \q
-
clone and build:
$ git clone https://github.com/tecnico-softeng/hellofenix.git
$ cd hellofenix
$ mvn package
-
execute: add names and fetch the saved data
$ mvn exec:java -Dexec.args="Pedro Mateus Tiago Maria"
$ mvn exec:java
-
execute: remove and add names
$ mvn exec:java -Dexec.args="-Mateus -Maria +Joaquim +Teresa"