Spaces:
Runtime error
Runtime error
will
neon_arch
mergify[bot]
alamin655
commited on
Commit
β’
0facfdb
1
Parent(s):
67487a5
π Additional commands required for the setup of the local development environment (#379)
Browse files* docs: Add additional commands in developing.md
* Update docs/developing.md
Co-authored-by: neon_arch <[email protected]>
* Update developing.md
* π chore: bump the app version (#379)
* π chore: bump the app version (#379)
---------
Co-authored-by: neon_arch <[email protected]>
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Co-authored-by: alamin655 <[email protected]>
- Cargo.lock +1 -1
- Cargo.toml +1 -1
- docs/developing.md +2 -1
Cargo.lock
CHANGED
@@ -4022,7 +4022,7 @@ checksum = "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc"
|
|
4022 |
|
4023 |
[[package]]
|
4024 |
name = "websurfx"
|
4025 |
-
version = "1.2.
|
4026 |
dependencies = [
|
4027 |
"actix-cors",
|
4028 |
"actix-files",
|
|
|
4022 |
|
4023 |
[[package]]
|
4024 |
name = "websurfx"
|
4025 |
+
version = "1.2.25"
|
4026 |
dependencies = [
|
4027 |
"actix-cors",
|
4028 |
"actix-files",
|
Cargo.toml
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
[package]
|
2 |
name = "websurfx"
|
3 |
-
version = "1.2.
|
4 |
edition = "2021"
|
5 |
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."
|
6 |
repository = "https://github.com/neon-mmd/websurfx"
|
|
|
1 |
[package]
|
2 |
name = "websurfx"
|
3 |
+
version = "1.2.25"
|
4 |
edition = "2021"
|
5 |
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."
|
6 |
repository = "https://github.com/neon-mmd/websurfx"
|
docs/developing.md
CHANGED
@@ -50,10 +50,11 @@ Before you start working on the project. You will need the following packages in
|
|
50 |
- 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).
|
51 |
- 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).
|
52 |
- 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/).
|
53 |
-
- 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:
|
54 |
|
55 |
```shell
|
56 |
$ npm i -g stylelint
|
|
|
57 |
```
|
58 |
|
59 |
> **Note**
|
|
|
50 |
- 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).
|
51 |
- 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).
|
52 |
- 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/).
|
53 |
+
- 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:
|
54 |
|
55 |
```shell
|
56 |
$ npm i -g stylelint
|
57 |
+
$ npm i -g stylelint stylelint-config-standard postcss-lit
|
58 |
```
|
59 |
|
60 |
> **Note**
|