From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-1.2 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NUMERIC_HTTP_ADDR,URIBL_BLOCKED, WEIRD_PORT autolearn=ham autolearn_force=no version=3.4.6 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1681570098; bh=VdtsXcffESKvom+aPIgFvhbv+aSXU3acPtW7jbiM5Xw=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=UIz9y3IiINPb5qwivuBCw9v2zQ+OmnJtZ0G3J1LFZRUYQmb8DN6DKqM/bBfZ/zaVO irf4APdxJjHUA/S3a9caPZ+Y9SvCvhBr3A6xTH614JhMiLZqaIx4+oYkoWciQffgew bzoMA+lUEzWnsKqKy0p5MDdrsuIM5ncfx2Y16+t3UiPa8r6P/V6UrhKSRnw8cP112W jDzVzHk+U0lMyeis6NCuxkKOliyx8v8ZoGSVf1KLbC4Y5fefHYd6n1Kg7U7ohaGyix Y3TIuvqquMS1FNqvv7sZtk3rRm1iNhWySpGJLQ84IGX/kqiZG/PI5ZkuWXdDrwkRwI QL20RQskgGsgg== Received: from localhost.localdomain (unknown [182.1.21.53]) by gnuweeb.org (Postfix) with ESMTPSA id 200F8245515; Sat, 15 Apr 2023 21:48:16 +0700 (WIB) From: Memet Zx To: GNU/Weeb Mailing List Cc: Ammar Faizi , Memet Zx Subject: [PATCH: Website v2 2/2] README.md: Initialize the information Date: Sat, 15 Apr 2023 21:48:05 +0700 Message-Id: <20230415144805.282728-3-zxce3@gnuweeb.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230415144805.282728-1-zxce3@gnuweeb.org> References: <20230415144805.282728-1-zxce3@gnuweeb.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: The README.md file provides important information about the project, including its purpose, how to install and run it, and any dependencies or requirements. This file will help other developers understand the project and contribute to it more easily. Additionally, it will serve as a reference for future development and maintenance tasks. Signed-off-by: Memet Zx --- README.md | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..349167a --- /dev/null +++ b/README.md @@ -0,0 +1,57 @@ +# GNU/Weeb Website + +Build comunity through Open Source technology. + +Welcome to new website repo for GNU/Weeb. This is a new website for GNU/Weeb. +This website is built with pure PHP native and HTML5. + +## How to contribute + +You can contribute to this website by forking this repo and make a pull request. +You can also contribute by opening an issue. + +## Installation + +- Clone this repo. +- `cd` into the root directory. +- copy `config.example.php` to `config.php` and edit it. +- and run this command: + + ```bash + php -S localhost:8000 -t public public/index.php + ``` + +- Open your browser and go to `localhost:8000` + +## Configuration + +default configuration is: + +```php + +``` + +### Custom config + +you can made a custom config for each page for example: + +```php + +``` + +and call it with `` -- Memet Zx