diff --git a/CONTRIBUTE.md b/CONTRIBUTE.md
new file mode 100644
index 0000000..e69de29
diff --git a/README.md b/README.md
index 2c6053e..9a01279 100644
--- a/README.md
+++ b/README.md
@@ -1,40 +1,95 @@
-
+
-
-
-
-
-
-## About Flarum
+
+About
+
+
-**[Flarum](https://flarum.org/) is a delightfully simple discussion platform for your website.** It's fast and easy to use, with all the features you need to run a successful community. It is designed to be:
+**[devmaluku](https://devmaluku.org/) is a delightfully discussion platform website in Maluku.** It's fast and easy to use, we believe that by bringing together people with the same interests can have a good influence on internet users in Maluku.
-* **Fast and simple.** No clutter, no bloat, no complex dependencies. Flarum is built with PHP so it’s quick and easy to deploy. The interface is powered by Mithril, a performant JavaScript framework with a tiny footprint.
-
-* **Beautiful and responsive.** This is forum software for humans. Flarum is carefully designed to be consistent and intuitive across platforms, out-of-the-box.
-
-* **Powerful and extensible.** Customize, extend, and integrate Flarum to suit your community. Flarum’s architecture is amazingly flexible, with a powerful Extension API.
-
-
+with all the features you need to run a successful community. It is designed to be:
## Installation
+ Before you install, it's important to check that your server support the requirements to run, you will need:
+* `Apache` (with mod_rewrite enabled) or `Nginx`
+* `PHP 7.3+` with the following extensions: `curl`, `dom`, `fileinfo`, `gd`, `json`, `mbstring`, `openssl`, `pdo_mysql`, `tokenizer`, `zip`
+* `MySQL 5.6+/8.0.23+` or `MariaDB 10.0.5+`
-Read the **[Installation guide](https://docs.flarum.org/install)** to get started. For support, refer to the [documentation](https://docs.flarum.org/), and ask questions on the [community forum](https://discuss.flarum.org/) or [Discord chat](https://flarum.org/discord/).
+### Installing by unpacking an archive
+If you don't have SSH access to your server or you prefer not to use the command line, you can install by unpacking an archive. Please make sure you choose the one that matches your PHP version and public path.
+
+
+### Docker
+Read the **[Installation guide](https://github.com/mondediefr/docker-flarum)** to get started. For community support, refer to the forum on chat.
+
+
+### URL Rewriting
+
+#### Apache
+Includes a .htaccess file in the public directory – make sure it has been uploaded correctly. Flarum will not function properly if mod_rewrite is not enabled or .htaccess is not allowed. Be sure to check with your hosting provider (or your VPS) that these features are enabled. If you're managing your own server, you may need to add the following to your site configuration to enable .htaccess files:
+
+```xml
+
+ AllowOverride All
+
+```
+This ensures that htaccess overrides are allowed so Flarum can rewrite URLs properly.
+
+Methods for enabling mod_rewrite vary depending on your OS. You can enable it by running sudo a2enmod rewrite on Ubuntu. mod_rewrite is enabled by default on CentOS. Don't forget to restart Apache after making modifications!
+
+
+#### Nginx
+Assume you have a exsiting PHP site set up within Nginx, add the following to your server's configuration block:
+
+```bash
+include /path/.nginx.conf;
+```
+
+### Folder Ownership
+During installation, Flarum may request that you make certain directories writable. Modern operating systems are generally multi-user, meaning that the user you log in as is not the same as the user Flarum is running as. The user that Flarum is running as MUST have read + write access to:
+
+The root install directory, so Flarum can edit config.php.
+The storage subdirectory, so Flarum can edit logs and store cached data.
+The assets subdirectory, so that logos and avatars can be uploaded to the filesystem.
+Extensions might require other directories, so you might want to recursively grant write access to the entire Flarum root install directory.
+
+There are several commands you'll need to run in order to set up file permissions. Please note that if your install doesn't show warnings after executing just some of these, you don't need to run the rest.
+
+First, you'll need to allow write access to the directory. On Linux:
+
+
+```bash
+chmod 775 -R /path/to/directory
+```
+If that isn't enough, you may need to check that your files are owned by the correct group and user. By default, in most Linux distributions www-data is the group and user that both PHP and the web server operate under. You'll need to look into the specifics of your distro and web server setup to make sure. You can change the folder ownership in most Linux operating systems by running:
+```bash
+chown -R www-data:www-data /path/to/directory
+```
+
+### Setup config
+By default directory structure includes a public directory which contains only publicly-accessible files. This is a security best-practice, ensuring that all sensitive source code files are completely inaccessible from the web root.
+
+However, if you wish to host app in a subdirectory (like yoursite.com/devmaluku), or if your host doesn't give you control over your webroot (you're stuck with something like public_html or htdocs), you can set up app without the public directory.
+
+If you intend to install using one of the archives, you can simply use the no-public-dir (Public Path = No) archives and skip the rest of this section. If you're installing via Composer, you'll need to follow the instructions below.
+
+Simply move all the files inside the public directory (including .htaccess) into the directory you want to serve Flarum from. Then edit .htaccess and uncomment lines 9-15 in order to protect sensitive resources. For Nginx, uncomment lines 8-11 of .nginx.conf.
+
+You will also need to edit the index.php file and change the following line:
+```php
+// site.php
+
+'base' => __DIR__,
+'public' => __DIR__,
+'storage' => __DIR__.'/storage',
+```
## Contributing
-Thank you for considering contributing to Flarum! Please read the **[Contributing guide](https://docs.flarum.org/contributing)** to learn how you can help.
+Thank you for considering contributing! Please read the **[Contributing guide](./CONTRIBUTE.md)** to learn how you can help.
-This repository only holds the Flarum skeleton application. Most development happens in [flarum/core](https://github.com/flarum/core).
-
-## Security Vulnerabilities
-
-If you discover a security vulnerability within Flarum, please follow our [security policy](https://github.com/flarum/core/security/policy) so we can address it promptly.
-
-## License
-
-Flarum is open-source software licensed under the [MIT License](https://github.com/flarum/flarum/blob/master/LICENSE).
+This repository only holds the skeleton application. Most development happens in [devmaluku/core](https://github.com/devmaluku/core).
diff --git a/composer.json b/composer.json
index c63b5f8..683a854 100644
--- a/composer.json
+++ b/composer.json
@@ -1,24 +1,25 @@
{
- "name": "flarum/flarum",
- "description": "Delightfully simple forum software.",
+ "name": "devmaluku/devmaluku",
+ "description": "Delightfully forum.",
"type": "project",
"keywords": [
"forum",
- "discussion"
+ "discussion",
+ "maluku"
],
- "homepage": "https://flarum.org/",
+ "homepage": "https://devmaluku.org/",
"license": "MIT",
"authors": [
{
- "name": "Flarum",
- "email": "info@flarum.org",
- "homepage": "https://flarum.org/team"
+ "name": "Azman Abdullah",
+ "email": "azmanabdlh12@gmail.com",
+ "homepage": "https://github.com/azmanabdlh"
}
],
"support": {
- "issues": "https://github.com/flarum/core/issues",
- "source": "https://github.com/flarum/flarum",
- "docs": "https://docs.flarum.org/"
+ "issues": "https://github.com/devmaluku/devmaluku/issues",
+ "source": "https://github.com/devmaluku/flarum",
+ "docs": "https://github.com/devmaluku/devmaluku/blob/master/README.md"
},
"require": {
"flarum/core": "^1.8",
diff --git a/logo.png b/logo.png
new file mode 100644
index 0000000..66f105e
Binary files /dev/null and b/logo.png differ