/**
  * Initialize the default option lists and create assets folders
  */
 public function initializeNewProject()
 {
     // setup default option lists
     $jsonFilePath = APPPATH . 'json/languageforge/lexicon/partOfSpeech.json';
     LexOptionListModel::CreateFromJson($this, LexConfig::POS, $jsonFilePath);
     // Semantic Domains are delivered to the client as a javascript variable.
     $this->createAssetsFolders();
     $this->createDatabaseIndexes();
 }