1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-03-31 06:28:13 +02:00

Update documentation to mention the need to apply sql patches.

Summary:
Update documentation to mention the need to apply sql patches.

Task ID: #

Test Plan:
No

Reviewed By: epriestley
Reviewers: epriestley
CC: epriestley
Revert Plan:
OK

- begin *PUBLIC* platform impact section -
Bugzilla: #
- end platform impact -

Differential Revision: 52
This commit is contained in:
adonohue 2011-03-06 14:56:12 -08:00
parent e98d1ae9be
commit 9f1b50ad2c

11
src/docs/configuration_guide.diviner Normal file → Executable file
View file

@ -11,11 +11,18 @@ If you haven't, see @{article:Installation Guide}.
= Configuring MySQL =
Get MySQL running and verify you can connect to it. Consult the MySQL
documentation for help. When MySQL works, you just need to load the Phabricator
schemata into it:
documentation for help. When MySQL works, you need to load the Phabricator
schemata into it. First, load the initial database schema.
mysql -uroot < path/to/phabricator/resources/sql/init/initialize.sql
Next, load each of the database patches in order. (One day this will be
better.)
mysql -uroot < path/to/phabricator/resources/sql/patches/000.project.sql
mysql -uroot < path/to/phabricator/resources/sql/patches/001...
...
= Configuring Apache =
Get Apache running and verify it's serving a test page. Consult the Apache