Arquivos
wMind/mind
T
Felipe Nascimento de Moura 04aa11aaab fixed bugs around default values and fks which were also pks
Also, added the program dqb to build DDL codes
Working on postgres DDL generator
2011-03-30 22:09:55 -03:00

32 linhas
874 B
PHP
Arquivo Executável

#!/usr/bin/env php
<?php
/**
* this file will be only accessed trhough the console
* if you pass the parameter install to it, it will
* create the SQLite database, start it, and try to
* create shortcuts, allowing the use of the comand
* mind, in your console
*/
$_MIND= Array();
$_MIND['env']= 'shell';
// checks if it has received any argument
if(sizeOf($_SERVER['argv'])>0)
{
// installation should create the required SQLite database and a shortcut command
if($_SERVER['argv'][1] == 'install')
{
// first, for linux and mac computers
if (strtoupper(substr(PHP_OS, 0, 3)) !== 'WIN')
{
require('mind3rd/env/setup/UnixSetup.php');
UnixSetup::install();
}else{
WinSetup::install();
}
exit;
}
// if not installing, it should be redirected to mind3rd/API/shell.php
header('location:./mind3rd/API/shell.php');
}