Index: README.md |
diff --git a/README.md b/README.md |
new file mode 100644 |
index 0000000000000000000000000000000000000000..2de46dc3f11bc7a9938c4aada1ad02387afab309 |
--- /dev/null |
+++ b/README.md |
@@ -0,0 +1,24 @@ |
+Skia-Buildbot Repository |
+======================== |
+ |
+This repo contains infrastructure code for Skia. |
+ |
+ |
+Quick Start |
+=========== |
+ |
+Tests require a local installation of MySQL. For a Debian based distro: |
+$ sudo apt-get install mysql-client mysql-server |
+ |
+Then, to set up local versions of the production databases: |
+$ cd go/database |
+$ ./setup_test_db |
+ |
+ |
+Database Setup for Testing |
+========================== |
+Tests which use the database package's testutils require you to have a MySQL |
+instance running with a database named "sk_testing" and users called |
+"readwrite" and "test_root" with appropriate permissions for sk_testing. |
+The 'setup_test_db' script in 'go/database' is included for convenience in |
+setting up this test database and user. |