this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Now working with MySQL backend as well

+33 -5
+4 -2
conf/config.yaml
··· 1 - driver: sqlite 2 - database: tumble.sqlite 1 + driver: mysql 2 + database: tumble 3 + username: tumble 4 + host: 127.0.0.1:13306 3 5 baseurl: localhost:8080
+3
conf/config.yaml.sqlite
··· 1 + driver: sqlite 2 + database: tumble.sqlite 3 + baseurl: localhost:8080
-3
sql/sql_setup
··· 1 - CREATE USER 'tumble'@'localhost'; 2 - create database tumble; 3 - GRANT ALL ON tumble.* TO 'tumble'@'localhost';
+26
sql/user_and_database_setup.mysql
··· 1 + -- Clean up 2 + DROP USER IF EXISTS 'tumble'@'%'; 3 + DROP USER IF EXISTS 'tumble'@'127.0.0.1'; 4 + DROP USER IF EXISTS 'tumble'@'localhost'; 5 + 6 + -- Create DB 7 + CREATE DATABASE IF NOT EXISTS tumble; 8 + 9 + -- Socket-authenticated local user 10 + CREATE USER 'tumble'@'localhost' IDENTIFIED BY ''; 11 + 12 + -- Grants (powerful but no DB drop) 13 + GRANT 14 + SELECT, 15 + INSERT, 16 + UPDATE, 17 + DELETE, 18 + CREATE, 19 + ALTER, 20 + INDEX, 21 + DROP, 22 + REFERENCES 23 + ON tumble.* 24 + TO 'tumble'@'localhost'; 25 + 26 + FLUSH PRIVILEGES;