Added postgresql to the manual and choose a more generic sqlite database name.
This commit is contained in:
parent
9812ca9fb5
commit
bf2ddbea4a
2 changed files with 3 additions and 2 deletions
|
@ -15,8 +15,9 @@ Diese Anleitung geht davon aus das du SSH-Zugriff auf deinen Server hast. Wenn d
|
||||||
3. Abhängigkeiten installieren
|
3. Abhängigkeiten installieren
|
||||||
1. composer herunterladen ```curl -sS https://getcomposer.org/installer | php```
|
1. composer herunterladen ```curl -sS https://getcomposer.org/installer | php```
|
||||||
2. Installation ausführen: ```php composer.phar install```
|
2. Installation ausführen: ```php composer.phar install```
|
||||||
|
- für PostgreSQL wähl pdo_pgsql als Datenbanktreiber
|
||||||
- für MySQL wähle pdo_mysql als Datenbanktreiber
|
- für MySQL wähle pdo_mysql als Datenbanktreiber
|
||||||
- für SQLite ist pdo_sqlite zu nutzen, dabei ist der Pfad anzugeben. Der Standardpfad legt die Datei ffcal.sqlite3 im Verzeichnis app an.
|
- für SQLite ist pdo_sqlite zu nutzen, dabei ist der Pfad anzugeben. Der Standardpfad legt die Datei calcifer.sqlite3 im Verzeichnis app an.
|
||||||
5. Dann die Tabellen erstellen: ```php app/console doctrine:schema:update --force```
|
5. Dann die Tabellen erstellen: ```php app/console doctrine:schema:update --force```
|
||||||
6. Cache löschen ```php app/console cache:clear --env=prod --no-debug```
|
6. Cache löschen ```php app/console cache:clear --env=prod --no-debug```
|
||||||
7. Assets dumpen ```php app/console assetic:dump --env=prod --no-debug```
|
7. Assets dumpen ```php app/console assetic:dump --env=prod --no-debug```
|
||||||
|
|
2
app/config/parameters.yml.dist
Normal file → Executable file
2
app/config/parameters.yml.dist
Normal file → Executable file
|
@ -5,7 +5,7 @@ parameters:
|
||||||
database_name: symfony
|
database_name: symfony
|
||||||
database_user: root
|
database_user: root
|
||||||
database_password: ~
|
database_password: ~
|
||||||
database_path: "%kernel.root_dir%/ffcal.sqlite3"
|
database_path: "%kernel.root_dir%/calcifer.sqlite3"
|
||||||
|
|
||||||
mailer_transport: smtp
|
mailer_transport: smtp
|
||||||
mailer_host: 127.0.0.1
|
mailer_host: 127.0.0.1
|
||||||
|
|
Reference in a new issue