Skip to content

Commit

Permalink
additional, minor, manifest changes (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob Chartier authored Feb 2, 2021
1 parent 604e6a4 commit 4ba0f25
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/filerun/c6o.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ editions:
- type: input
name: FR_DB_USER
message: Specify the username of your database server service
default: mysql.database
default: filerun
c6o:
label: Database User name
required: true
Expand Down
2 changes: 1 addition & 1 deletion packages/funkwhale/c6o.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Funk Whale
appId: funkwhale #App internal name (all lower, no spaces); minimum 5 characters
appId: funkwhale
package: '@provisioner/appengine'
icon: icon.svg
description:
Expand Down
7 changes: 7 additions & 0 deletions packages/grocy/c6o.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ summary:
description:
ERP beyond your fridge - grocy is a web-based self-hosted groceries & household management solution for your home.


Setup

----

Grocy has a default username and password, both of which are 'admin'. Use it to login for the first time.

category: analytics
keywords:
- Query
Expand Down
28 changes: 28 additions & 0 deletions packages/joomla/c6o.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,34 @@ description:

Joomla! is free and Open Source software distributed under the GNU General Public License version 2 or later.


Setup

----

Joomla! requires access to a MySql/MariaDB database along with a user with 'mysql_native_password' (MySql Only) authentication. This has been created prior to the installation.


Here is a sample script to get you started


~~~~

CREATE DATABASE joomla;

CREATE USER 'joomla'@'%' IDENTIFIED BY '88888888';

ALTER USER 'joomla'@'%' IDENTIFIED WITH mysql_native_password BY '88888888';

GRANT ALL PRIVILEGES ON joomla.* TO 'joomla'@'%';

FLUSH PRIVILEGES;

SELECT User, Plugin FROM mysql.user;

~~~~

Be sure to change the value '88888888' with a secure password.
category: cms
keywords:
- Content Management System
Expand Down

0 comments on commit 4ba0f25

Please sign in to comment.