Closed weex closed 2 years ago
Next steps:
Making your account admin (by adding database record):
Login to YunoHost as admin account.
ssh admin@your-yunohost
Become root:
sudo su
Login to database
sudo -u postgres psql diaspora_production
Verify that the account you want to make admin is user id 1.
select * from users;
Make user id 1 admin (or another id if someone else created an account first)
insert into roles (person_id, name, created_at, updated_at) values (1, 'admin', now(), now());
You should now see that your user is admin in the web interface. Type exit and hit enter repeatedly to log out of database, root, and ssh and you're done.
https://github.com/YunoHost/apps#how-to-add-your-app-to-the-application-catalog