TabbyLD is a web-based software for semantic interpretation of spreadsheets.
TabbyLD is based on PHP 7 and Yii 2 Framework.
1.0
assets/ contains assets definition
commands/ contains console commands for creation of langs by-default and table data annotation
components/ contains core modules for semantic table interpretation (CanonicaltableAnnotator and RDFCodeGenerator)
config/ contains application configurations
migrations/ contains all database migrations
modules/ contains single module:
main/ contains controller, models and views
web/ contains the entry script and Web resources
The minimum requirement by this project template that your Web server supports PHP 7.0 and PostgreSQL 9.0.
If you do not have Git, you can install it depending on your OS.
You can clone this project into your directory (recommended installation):
git clone https://github.com/tabbydoc/tabbyld.git
Edit the file config/db.php
with real data, for example:
return [
'class' => 'yii\db\Connection',
'dsn' => 'pgsql:host=localhost;port=5432;dbname=tabbyld;',
'username' => 'postgres',
'password' => 'root',
'charset' => 'utf8',
'tablePrefix' => 'tabbyld_',
'schemaMap' => [
'pgsql'=> [
'class'=>'yii\db\pgsql\Schema',
'defaultSchema' => 'public'
]
],
];
NOTES:
- TabbyLD won't create the database for you, this has to be done manually before you can access it.
- Check and edit the other files in the
config/
directory to customize your application as required.
Applying migrations (creating tables in a database):
php yii migrate/up
Creating default locale records in a database:
php yii lang/create
Starting process of annotating spreadsheets:
php yii spreadsheet/annotate
Deleting all records for annotated datasets from database:
php yii annotated-dataset/remove
NOTES:
- Commands are entered sequentially into the console, being in the folder with the project.