mirror of
https://github.com/friendica/friendica
synced 2024-11-10 03:02:54 +00:00
Dev env: fix admin email
This commit is contained in:
parent
2e69bd95a0
commit
f05e773a8c
2 changed files with 2 additions and 2 deletions
|
@ -33,7 +33,7 @@ $a->config['sitename'] = "My Friend Network";
|
|||
|
||||
$a->config['register_policy'] = REGISTER_OPEN;
|
||||
$a->config['register_text'] = '';
|
||||
$a->config['admin_email'] = 'admin@friendica.dev';
|
||||
$a->config['admin_email'] = 'admin@friendica.local';
|
||||
|
||||
// Maximum size of an imported message, 0 is unlimited
|
||||
|
||||
|
|
|
@ -89,7 +89,7 @@ php bin/composer.phar install
|
|||
cp /vagrant/util/htconfig.vagrant.php /vagrant/.htconfig.php
|
||||
|
||||
# create the friendica database
|
||||
echo "create database friendica DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci" | mysql -u root -proot
|
||||
echo "create database friendica DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci" | $MYSQL -u root -proot
|
||||
# import test database
|
||||
$MYSQL -uroot -proot friendica < /vagrant/friendica_test_data.sql
|
||||
|
||||
|
|
Loading…
Reference in a new issue