From 0facfdbd56cea32723a8d89bf0f1aed7f3aea9f0 Mon Sep 17 00:00:00 2001 From: will <64425242+willser@users.noreply.github.com> Date: Fri, 10 Nov 2023 14:35:52 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Additional=20commands=20required?= =?UTF-8?q?=20for=20the=20setup=20of=20the=20local=20development=20environ?= =?UTF-8?q?ment=20(#379)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * docs: Add additional commands in developing.md * Update docs/developing.md Co-authored-by: neon_arch * Update developing.md * 🔖 chore: bump the app version (#379) * 🔖 chore: bump the app version (#379) --------- Co-authored-by: neon_arch Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> Co-authored-by: alamin655 --- Cargo.lock | 2 +- Cargo.toml | 2 +- docs/developing.md | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 869b604..6c308b5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4022,7 +4022,7 @@ checksum = "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc" [[package]] name = "websurfx" -version = "1.2.24" +version = "1.2.25" dependencies = [ "actix-cors", "actix-files", diff --git a/Cargo.toml b/Cargo.toml index 4c2a812..82e88b1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "websurfx" -version = "1.2.24" +version = "1.2.25" edition = "2021" description = "An open-source alternative to Searx that provides clean, ad-free, and organic results with incredible speed while keeping privacy and security in mind." repository = "https://github.com/neon-mmd/websurfx" diff --git a/docs/developing.md b/docs/developing.md index 831809d..c8752e6 100644 --- a/docs/developing.md +++ b/docs/developing.md @@ -50,10 +50,11 @@ Before you start working on the project. You will need the following packages in - The latest version of `cargo` installed on your system which is required to manage building and running the project. The installation instructions for this can be found [here](https://doc.rust-lang.org/cargo/getting-started/installation.html). - The latest version of `npm` installed on your system which is required to allow the installation of other tools necessary for the project. The installation for this can be found [here](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm). - The latest version of `redis` installed on your system which will be used to avoid introducing unexpected issues when working on the project. The installation for this can be found [here](https://redis.io/docs/getting-started/installation/). -- The latest version of `stylelint` should be installed on your system which will be used by the pre-commit checks to lint the code before a commit can be made to ensure better code quality. Before you install `stylelint` on your system, make sure you have `npm` installed on your system. To install `stylelint` run the following command: +- The latest version of `stylelint` should be installed on your system which will be used by the pre-commit checks to lint the code before a commit can be made to ensure better code quality. Before you install `stylelint` on your system, make sure you have `npm` installed on your system. To install `stylelint` and plugins run the following command: ```shell $ npm i -g stylelint +$ npm i -g stylelint stylelint-config-standard postcss-lit ``` > **Note**