Spaces:
Runtime error
Runtime error
alamin655
Merge branch 'rolling' into DOCS/439_revise-the-docs-to-remain-in-sync-with-the-current-changes
8312d21
unverified
# Developing | |
This page of the docs outlines how to get **Websurfx** up and running in a development environment, and outlines the common workflow, different ways to work on the project, a high-level overview of how the project works, project structure, and the best practices that should be followed when working on the project. | |
<details> | |
<summary><b>Table of Contents</b></summary> | |
<p> | |
- [Setting up the Development Environment](#setting-up-the-development-environment) | |
- [Local Development](#local-development-) | |
- [Gitpod](#gitpod-) | |
- [NixOS Dev Shell using Nix Flake](#nixos-dev-shell-using-nix-flake-) | |
- [Local Development with Docker Compose](#local-development-with-docker-compose-) | |
- [Project Commands](#project-commands) | |
- [Environment Variables](#environment-variables) | |
- [Git Strategy](#git-strategy) | |
- [Flow](#git-flow) | |
- [Branches](#git-branch-naming) | |
- [Commit emojis](#commit-emojis) | |
- [PR Guidelines](#pr-guidelines) | |
- [Resources for Beginners](#resources-for-beginners) | |
- [App Info](#app-info) | |
- [Code Style Guide](#style-guide) | |
- [Application Structure](#application-structure) | |
- [Development Tools](#development-tools) | |
- [Misc / Notes](#notes) | |
</p> | |
</details> | |
## Setting up the Development Environment | |
By default, we provide four different ways to work on the project. These are as follows: | |
- [Local Development](#local-development-) | |
- [Gitpod](#gitpod-) | |
- [NixOS Dev Shell using Nix Flake](#nixos-dev-shell-using-nix-flake-) | |
- [Local Development with Docker Compose](#local-development-with-docker-compose-) | |
The different methods are explained in depth below. | |
### Local Development | |
This section covers how to set up the project for development on your local machine (bare metal). | |
#### Prerequisites | |
Before you start working on the project. You will need the following packages installed on your system: | |
- 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` and plugins run the following command: | |
```shell | |
$ npm i -g stylelint | |
$ npm i -g stylelint stylelint-config-standard postcss-lit | |
``` | |
> [!Note] | |
> In the above command the dollar sign(**$**) refers to running the command in privileged mode by using utilities `sudo`, `doas`, `pkgexec`, or any other privileged access methods. | |
- `Cargo-watch` installed on your system which will allow you to auto-build the project when any checks occur in the source code files in the codebase (`websurfx` directory). Before you install `cargo-watch` on your system, make sure you have `cargo` installed on your system. To install `cargo-watch` run the following command: | |
```shell | |
cargo install cargo-watch | |
``` | |
- `Git` installed on your system. The installation instructions for this can be found [here](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git). | |
- Finally, The latest version of `Docker` is installed on your system which will be used to avoid introducing unexpected issues when working on the project. The installation instructions for this can be found [here](https://docs.docker.com/engine/install/). | |
> [!Note] | |
> For **rolling release Linux distributions (distros)**, the above-mentioned required packages except for `stylelint` and `cargo-watch` can also be installed via the distro-specific package manager. | |
> | |
> **For Example:** | |
> | |
> On `arch linux` the following packages can be installed by following the link to the installation instructions provided below: | |
> | |
> - `Cargo`: https://wiki.archlinux.org/title/rust | |
> - `Npm`: https://wiki.archlinux.org/title/Node.js | |
> - `Redis`: https://wiki.archlinux.org/title/redis | |
> - `Git`: https://wiki.archlinux.org/title/git | |
> - `Docker`: https://wiki.archlinux.org/title/docker | |
> | |
> But we do not recommend this method for **stable release Linux distros** as they tend to not provide very up-to-date versions of the required packages. | |
#### Setting up Pre-commit Checks | |
Before you set `pre-commit` checks, you will first need to clone **your fork of the project** and navigate into the cloned repository by running the following command: | |
```shell | |
git clone https://github.com/<your_github_username>/websurfx.git | |
cd websurfx | |
``` | |
Once you have finished running the above commands then run the following command to set the `pre-commit` checks: | |
```shell | |
cargo test | |
``` | |
By running the above-mentioned command, it will automatically set up all the pre-commit checks in the project. | |
#### Running the Project | |
If you have followed the above section then you should have a cloned repository folder present on your system. In the same directory run the following command to run the project: | |
```shell | |
cargo watch -q -x "run" -w "." | |
``` | |
This will compile the app by default with the **In-Memory caching** feature. To compile, run, and test the app with other features follow the build options listed below: | |
##### Hybrid Cache | |
To build and run the app with the `Hybrid caching` feature. Run the following command: | |
```shell | |
cargo watch -q -x "run --features redis-cache" -w . | |
``` | |
##### No Cache | |
To build and run the search engine with the `No caching` feature. Run the following command: | |
```shell | |
cargo watch -q -x "run --no-default-features" -w . | |
``` | |
##### Redis Cache | |
To build the search engine with the `Redis caching` feature. Run the following command: | |
```shell | |
cargo watch -q -x "run --no-default-features --features redis-cache" -w . | |
``` | |
> Optionally, If you have build and run the app with the `Redis cache`or `Hybrid cache` feature (as mentioned above) then you will need to start the redis server alongside the app which can be done so by running the following command: | |
> | |
> ```shell | |
> redis-server --port 8082 & | |
> ``` | |
Once you have finished running the above command, Websurfx should now be served on the address http://127.0.0.1:8080. Hot reload is enabled, so making changes to any of the files will trigger the project to be rebuilt. | |
> For more info on all the project commands. See: [**Project Commands**](#project-commands-) | |
### Gitpod | |
This section covers how to use and set up the Gitpod development environment for working on the project. | |
> [!Note] | |
> By default the project only supports the Vscode **IDE/Editor** for Gitpod. | |
#### Launching Gitpod | |
> For a full guide on how to fork the project. See: [**Forking**](#) | |
To launch gitpod and start working on the project from your fork of the Websurfx, Just navigate to the following link: | |
```text | |
https://gitpod.io/#https://github.com/<your_github_username>/websurfx | |
``` | |
> For a full guide on how to use it and how to use it in different ways. See [**Learn Gitpod**](https://piped.kavin.rocks/playlist?list=PL3TSF5whlprXVp-7Br2oKwQgU4bji1S7H) | |
#### Default Plugins | |
The project by default provides a set of pre-installed plugins for gitpod which is done to improve productivity and efficiency while working on the project. Also to make working on the project more fun and engaging which can be customized from within the `Gitpod` instance. | |
The list of all the pre-installed plugins are listed below: | |
**Productivity** | |
- [CodeLLDB](https://open-vsx.org/extension/vadimcn/vscode-lldb): Provides a native debugger for rust programming langauge. | |
- [GitHub Actions](https://open-vsx.org/extension/cschleiden/vscode-github-actions): Provides an easy to work with github actions. | |
- [rust-analyzer](https://open-vsx.org/extension/rust-lang/rust-analyzer): Provides a language server for rust programming langauge. | |
- [better-toml](https://open-vsx.org/extension/bungcip/better-toml): Provides support for toml files. | |
- [crates](https://open-vsx.org/extension/serayuzgur/crates): Makes managing rust dependencies easier. | |
- [Error Lens](https://open-vsx.org/extension/usernamehw/errorlens): Provides better highlighting of errors. | |
- [markdownlint](https://open-vsx.org/extension/DavidAnson/vscode-markdownlint): Provides a linter for linting markdown documents. | |
- [Prettier](https://open-vsx.org/extension/esbenp/prettier-vscode): Provides a code formatter. | |
- [Stylelint](https://open-vsx.org/extension/stylelint/vscode-stylelint): Provides a linter for CSS files. | |
- [ESLint](https://open-vsx.org/extension/dbaeumer/vscode-eslint): Provides a linter for JS files. | |
- [Syntax Highlighter](https://open-vsx.org/extension/evgeniypeshkov/syntax-highlighter): A better syntax highlighting for code. | |
- [Docker](https://open-vsx.org/extension/ms-azuretools/vscode-docker): Makes handling docker files easier. | |
- [indent-rainbow](https://open-vsx.org/extension/oderwat/indent-rainbow): Highlightes code idents for better visualization. | |
- [Auto Rename Tag](https://open-vsx.org/extension/formulahendry/auto-rename-tag): Provides a way to easily and quickly rename html tags. | |
- [Rust Test Explorer](https://open-vsx.org/extension/Swellaby/vscode-rust-test-adapter): View and run cargo tests easily from a convenient sidebar. | |
- [Search crates-io](https://open-vsx.org/extension/belfz/search-crates-io): Provides crates suggestions in the `cargo.toml` file. | |
- [Test Adapter Converter](https://open-vsx.org/extension/hbenl/test-adapter-converter): A vscode native way to view and run tests. | |
- [Test Explorer UI](https://open-vsx.org/extension/hbenl/vscode-test-explorer): Provides a way to run any test from a convenient sidebar. | |
- [GitLens](https://open-vsx.org/extension/eamodio/gitlens): Provides a better and more efficient way to manage common git workflows. | |
> Optionally, if you prefer a more keyboard-centric workflow then we would recommend using the following extension: | |
> | |
> - [VSCode Neovim](https://open-vsx.org/extension/asvetliakov/vscode-neovim): Provides complete vim emulation for vscode. | |
**Theming** | |
- [Catppuccin for VSCode](https://open-vsx.org/extension/Catppuccin/catppuccin-vsc): Provides the catpuccin theme for vscode. | |
- [Material Icon Theme](https://open-vsx.org/extension/PKief/material-icon-theme): Provides material design icons for files dependening on the file extension. | |
> If you have more ideas and ways to improve Gitpod for development purposes then feel free to do so by contributing a PR to this project [**here**](https://github.com/neon-mmd/websurfx/pulls). | |
### NixOS Dev Shell using Nix Flake | |
This section covers how to setup the project for development using the `NixOS dev-shell`. | |
#### Pre Setup Requirements | |
Before you start working on the project. You will need the following packages installed on your system: | |
- `Git` installed on your system. The installation instructions for this can be found [here](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git). | |
#### Setting up Pre-commit Checks | |
Before you setup `pre-commit` checks, you will first need to clone **your fork of the project** and navigate into the cloned repository by running the following command: | |
```shell | |
git clone https://github.com/<your_github_username>/websurfx.git | |
cd websurfx | |
``` | |
Then run the following command to setup the `NixOS dev-shell`: | |
```shell | |
nix develop | |
``` | |
> You can use `nix-direnv` to simplify entering into the `nix-shell`. Its setup is beyond the scope of this guide. Read more about it here: [nix-direnv](https://github.com/nix-community/nix-direnv) | |
This will add `docker`, `cargo-watch`, and other dev environment essentials to your `nix-shell` so you don't have to install everything imperatively. | |
After finishing the commands above, run the following command to setup the `pre-commit` checks: | |
```shell | |
cargo test | |
``` | |
By running the above-mentioned command, it will automatically set up all the pre-commit checks in the project. | |
#### Post Setup Requirements | |
The final step is to run | |
```shell | |
npm i -D stylelint-config-standard postcss-lit` | |
``` | |
This will add `node_modules` in the current directory. | |
Run `git commit` and if every thing is setup correctly, it should say that your branch is up to date. | |
#### Running the Project | |
If you have followed the above section then you should now be inside a `dev-shell` environment. In the same environment run the following command to run the project: | |
```shell | |
cargo watch -q -x "run" -w "." | |
``` | |
This will compile the app by default with the **In-Memory caching** feature. To compile, run, and test the app with other features follow the build options listed below: | |
##### Hybrid Cache | |
To build and run the app with the `Hybrid caching` feature. Run the following command: | |
```shell | |
cargo watch -q -x "run --features redis-cache" -w . | |
``` | |
##### No Cache | |
To build and run the search engine with the `No caching` feature. Run the following command: | |
```shell | |
cargo watch -q -x "run --no-default-features" -w . | |
``` | |
##### Redis Cache | |
To build the search engine with the `Redis caching` feature. Run the following command: | |
```shell | |
cargo watch -q -x "run --no-default-features --features redis-cache" -w . | |
``` | |
> Optionally, If you have build and run the app with the `Redis cache`or `Hybrid cache` feature (as mentioned above) then you will need to start the redis server alongside the app which can be done by running the following command: | |
> | |
> ```shell | |
> redis-server --port 8082 & | |
> ``` | |
Once you have finished running the above command, Websurfx should now be served on the address http://127.0.0.1:8080. Hot reload is enabled, so making changes to any of the files will trigger the project to be rebuilt. | |
### Local Development with Docker Compose | |
This section covers how to set up the project for development on your local machine (bare metal) using `docker compose`. | |
#### Prerequisites | |
Before you start working on the project. You will need the following packages installed on your system: | |
- The latest version of `cargo` installed on your system which is required to manage the 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 `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: | |
```shell | |
$ npm i -g stylelint | |
``` | |
> [!Note] | |
> In the above command the dollar sign(**$**) refers to running the command in privileged mode by using utilities `sudo`, `doas`, `pkgexec`, or any other privileged access methods. | |
- `Git` installed on your system. The installation instructions for this can be found [here](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git). | |
- Finally, The latest version of `Docker` is installed on your system which will be used to avoid introducing unexpected issues when working on the project. The installation instructions for this can be found [here](https://docs.docker.com/engine/install/). | |
> [!Note] | |
> For **rolling release Linux distributions (distros)**, the above-mentioned all required packages can also be installed via the distro-specific package manager. | |
> | |
> **For Example:** | |
> | |
> On `arch linux` the following packages can be installed by following the link to the installation instructions provided below: | |
> | |
> - `Cargo`: https://wiki.archlinux.org/title/rust | |
> - `Npm`: https://wiki.archlinux.org/title/Node.js | |
> - `Git`: https://wiki.archlinux.org/title/git | |
> - `Docker`: https://wiki.archlinux.org/title/docker | |
> | |
> But we do not recommend this method for **stable release Linux distros** as they tend to not provide very up-to-date versions of the required packages. | |
#### Setting up Pre-commit Checks | |
Before you setup `pre-commit` checks, you will first need to clone **your fork of the project** and navigate into the cloned repository by running the following command: | |
```shell | |
git clone https://github.com/<your_github_username>/websurfx.git | |
cd websurfx | |
``` | |
Once you have finished running the above commands then run the following command to setup the `pre-commit` checks: | |
```shell | |
cargo test | |
``` | |
By running the above-mentioned command, it will automatically set up all the pre-commit checks in the project. | |
#### Running the Project | |
If you have followed the above section then you should have a cloned repository folder present on your system. In the same directory, edit the `dev.docker-compose.yml` file as required before running the following command to run the project: | |
```shell | |
$ docker compose -f dev.docker-compose.yml up | |
``` | |
> [!Note] | |
> In the above command the dollar sign(**$**) refers to running the command in privileged mode by using utilities `sudo`, `doas`, `pkgexec`, or any other privileged access methods. | |
Once you have finished running the above command, Websurfx should now be served on the address http://127.0.0.1:8080. Hot reload is enabled, so making changes to any of the files will trigger the project to be rebuilt. | |
### Project Commands | |
#### Basics | |
- `cargo build`: Builds the project. | |
> [!Note] | |
> When you build the project first time with the above command it will require the app to compile every dependency in the project which will then be cached on your system. So when you compile the app next time it will only compile for the new changes. | |
- `cargo run`: Starts the app and serves the project on http://127.0.0.1:8080. | |
> [!Important] | |
> You must run the build command first. | |
#### Development | |
- `cargo watch -q -x "run" -w .`: Starts the development server with hot reloading. | |
- `cargo fmt -- --check`: Checks the code for proper formatting. | |
- `cargo clippy`: Lints code to ensure it follows a consistent, neat style. | |
- `cargo test`: Runs unit tests, integrations tests and doc tests. | |
### Environment Variables | |
All environment variables are optional. Currently, there are not many environment variables used, as most of the user preferences are stored under the `websurfx` folder (located under the codebase (`websurfx` directory)) in the `config.lua` file. | |
The list of all the available environment variables are listed below: | |
- `PKG_ENV`: Sets the logging level for the app to **Trace** which can be useful for better debugging of the app. These environment variables accept two values `dev` or `prod` as strings. | |
- `RUST_BACKTRACE`: Rust-specific environment variable useful for getting more elaborate error messages with an error stack to better diagnose the issue. This environment variable accepts three values `0` (off), `1` (on), and `full` (for long error stack to being printed out). | |
## Git Strategy | |
### Git Flow | |
Like most Git repos, we are following the [Github Flow](https://guides.github.com/introduction/flow) standard. | |
1. Create a branch (or fork if you don't have write access) | |
2. Code some awesome stuff π§βπ» | |
3. Add, commit, and push your changes to your branch/ fork | |
4. Head over to GitHub and create a Pull Request | |
5. Fill in the required sections in the template, and hit submit | |
6. Follow up with any reviews on your code | |
7. Merge π | |
### Git Branch Naming | |
The format of your branch name should be something similar to: `[TYPE]/[TICKET]_[TITLE]` | |
For example, `FEATURE/420_Awesome-feature` or `FIX/690_login-server-error` | |
### Commit Emojis | |
Using a single emoji at the start of each commit message, issue title, and pull request title, to indicate the type of task, makes the commit ledger, issue, and pull request easier to understand, it looks cool. | |
- π¨ `:art:` - Improve the structure/format of the code. | |
- β‘οΈ `:zap:` - Improve performance. | |
- π₯ `:fire:` - Remove code or files. | |
- π `:bug:` - Fix a bug. | |
- ποΈ `:ambulance:` - Critical hotfix | |
- β¨ `:sparkles:` - Introduce new features. | |
- π `:memo:` - Add or update documentation. | |
- π `:rocket:` - Deploy stuff. | |
- π `:lipstick:` - Add or update the UI and style files. | |
- π `:tada:` - Begin a project. | |
- β `:white_check_mark:` - Add, update, or pass tests. | |
- ποΈ `:lock:` - Fix security issues. | |
- π `:bookmark:` - Make a Release or Version tag. | |
- π¨ `:rotating_light:` - Fix compiler/linter warnings. | |
- π§ `:construction:` - Work in progress. | |
- β¬οΈ `:arrow_up:` - Upgrade dependencies. | |
- π· `:construction_worker:` - Add or update the CI build system. | |
- β»οΈ `:recycle:` - Refactor code. | |
- π©Ή `:adhesive_bandage:` - Simple fix for a non-critical issue. | |
- π§ `:wrench:` - Add or update configuration files. | |
- π± `:bento:` - Add or update assets. | |
- ποΈ `:card_file_box:` - Perform database schema-related changes. | |
- βοΈ `:pencil2:` - Fix typos. | |
- π `:globe_with_meridians:` - Internationalization and translations. | |
For a full list of options, see [gitmoji.dev](https://gitmoji.dev/) | |
### PR Guidelines | |
Once you've made your changes, and pushed them to your fork or branch, you're ready to open a pull request! | |
For a pull request to be merged, it must: | |
- The build, lint, and tests (run by GH actions) must pass | |
- There must not be any merge conflicts | |
When you submit your pull request, include the required info, by filling out the pull request template. Including: | |
- A brief description of your changes. | |
- The issue or ticket number (if applicable). | |
- For UI-related updates include a screenshot. | |
- If any dependencies were added, explain why it was needed, and state the cost. associated, and confirm it does not introduce any security, privacy, or speed issues | |
- Optionally, provide a checklist of all the changes that were included in the pull request. | |
> [!Important] | |
> Make sure to fill all the required/mandatory sections of the pull request as filling them helps us distinguish between spam pull requests and legitimate pull requests. | |
> [!Note] | |
> The pull request template contains comments in the following form `<!-- -->` which are used to provide a guide on what should be provided under each heading of the template. These comments are never rendered when the pull request is either created or updated and hence anything provided in such comments is never displayed. | |
## Resources for Beginners | |
New to Web Development? Or New to GitHub? Glad to see you're here!! :slightly_smiling_face: Websurfx is a pretty simple app, so it should make a good candidate for your first PR. The following articles (which have been divided into parts for convenience) should point you in the right direction for getting up to speed with the technologies used in this project: | |
**Development** | |
- [Basics of Rust](https://piped.kavin.rocks/playlist?list=PLai5B987bZ9CoVR-QEIN9foz4QCJ0H2Y8) | |
- [Introduction and deep dive into async/await in rust](https://piped.kavin.rocks/watch?v=ThjvMReOXYM) | |
- [Getting Started to Actix Guide](https://actix.rs/docs/getting-started) | |
- [Basics of Lua](https://learn.coregames.com/courses/intro-to-lua/) | |
- [Complete course on CSS](https://piped.kavin.rocks/watch?v=1Rs2ND1ryYc) | |
- [Complete course on JS](https://piped.kavin.rocks/playlist?list=PL_c9BZzLwBRLVh9OdCBYFEql6esA6aRsi) | |
- [Responsive web design](https://piped.kavin.rocks/watch?v=srvUrASNj0s) | |
- [Complete beginners guide to Docker](https://docker-curriculum.com/) | |
- [Docker Classroom - Interactive Tutorials](https://training.play-with-docker.com/) | |
- [Docker Compose Tutorial](https://docs.docker.com/compose/gettingstarted/) | |
- [ES6 Tutorial](https://piped.kavin.rocks/watch?v=nZ1DMMsyVyI) | |
- [Cargo Guide Book](https://doc.rust-lang.org/cargo/index.html) | |
**GitHub** | |
- [Complete Guide to Open Source - How to Contribute](https://piped.kavin.rocks/watch?v=yzeVMecydCE) | |
- [Forking a Project](https://piped.kavin.rocks/watch?v=FnxFwyzm4Z4) | |
- [A Tutorial on Git](https://piped.kavin.rocks/playlist?list=PL4lTrYcDuAfxAgSefXftJXbhw0qvjfOFo) | |
- [Git cheat sheet](http://git-cheatsheet.com/) | |
For Rust, CSS, JS, HTML, Git, and Docker- you'll need an IDE (e.g. [VSCode](https://code.visualstudio.com/) or [Neovim](https://neovim.io/) and a terminal (Windows users may find [WSL](https://docs.microsoft.com/en-us/windows/wsl/) more convenient). | |
## App Info | |
### Style Guides | |
Linting is done using [Cargo Clippy](https://doc.rust-lang.org/clippy/) and [StyleLint](https://stylelint.io/) or [ESLint](https://eslint.org/). Also, linting is run as a git pre-commit hook. | |
> [!Important] | |
> All lint checks must pass before any PR can be merged. | |
Styleguides to follow: | |
- [Rust API Guidelines](https://rust-lang.github.io/api-guidelines/naming.html) | |
- [Airbnb JS Guidelines](https://github.com/airbnb/javascript) | |
- [Google's Html and CSS Guidelines](https://google.github.io/styleguide/htmlcssguide.html) | |
## Application Structure | |
> [!Important] | |
> We follow the Unix style naming conventions for all the files and folders in the project (except for all files under the `themes` and `colorschemes` folder in the frontend's source code which requires that the names of the files and folders should be in lowercase and the words be separated with a hyphen.) which includes the name of the files and folders should be in lowercase and every word should be separated with an underscore. | |
**Files in the root of the codebase:** `./` | |
``` | |
./ | |
βββ .dockerignore # Docker ignore file to ignore stuff being included in the file docker image. | |
βββ .gitignore # Git ignore file to ignore stuff from being | |
βββ Cargo.lock # Auto-generated list of current packages and version numbers. | |
βββ Cargo.toml # Project meta-data and dependencies. | |
βββ Dockerfile # The blueprint for building the Docker container. | |
βββ LICENSE # License for use. | |
βββ README.md # Readme, basic info for getting started. | |
βββ dev.Dockerfile # The blueprint for building the Docker container for development purposes. | |
βββ dev.docker-compose.yml # A Docker run command for development environments. | |
βββ docker-compose.yml # A Docker run command. | |
βββ flake.lock # NixOS auto-generated flake configuration. | |
βββ flake.nix # Nix flake package configuration. | |
βββ docs # Markdown documentation | |
βββ public # Project front-end source code | |
βββ src # Project back-end source code | |
βββ tests # Project integration tests for the back-end source code. | |
βββ websurfx # Project folder containing config files for the app. | |
``` | |
**Frontend Source:** `./public/` | |
``` | |
./public/ | |
βββ robots.txt # Robots file for the Website. | |
βββ images # Images for the Website. | |
βββ static # The directory containing all the UI handlers. | |
βββ cookies.js # Handles the loading of saved cookies. | |
βββ error_box.js # Handles the toggling functionality of the error box on the search page. | |
βββ index.js # Functions to handle the search functionality of the search bar. | |
βββ pagination.js # Functions to handle the navigation between the previous and next page in the search page. | |
βββ search_area_options.js # Changes the search options under the search bar in the search page according to the safe search level set using the URL safesearch parameter. | |
βββ settings.js # Handles the settings and saving of all the settings page options as a cookie. | |
βββ colorschemes # A folder containing all the popular colorscheme files as CSS files. | |
βββ themes # A folder containing all the popular theme files as CSS files. | |
``` | |
**Fronted Maud HTML Framework Source:** `./src/templates/` | |
``` | |
./src/templates/ | |
βββ mod.rs # A module file for the rust project. | |
βββ partials # A folder containing the code for partials for the views. | |
β βββ bar.rs # Provides partial code for the search bar. | |
β βββ footer.rs # Provides partial code for the footer section. | |
β βββ header.rs # Provides partial code for the header section. | |
β βββ mod.rs # A module file for the rust project. | |
β βββ navbar.rs # Provides partial code for the navbar inside the header section. | |
β βββ search_bar.rs # Provides partial code for the search bar present in the search page. | |
β βββ settings_tabs # A folder containing all the partials for the settings page tabs. | |
β βββ cookies.rs # Provides partial code for the cookies tab. | |
β βββ engines.rs # Provides partial code for the engines tab. | |
β βββ general.rs # Provides partial code for the general tab. | |
β βββ mod.rs # A module file for the rust project. | |
β βββ user_interface.rs # Provides partial code for the user interface tab. | |
βββ views # A folder containing the code for the views. | |
βββ about.rs # Provides code for the about page view. | |
βββ index.rs # Provides code for the homepage view. | |
βββ mod.rs # A module file for the rust project. | |
βββ not_found.rs # Provides code for the 404 page view. | |
βββ search.rs # Provides code for the search page view. | |
βββ settings.rs # Provides code for the settings page view. | |
``` | |
**Backend Source:** `./src/` | |
``` | |
./src/ | |
βββ lib.rs # A library file for the rust project. | |
βββ bin # A folder containing the source code that would produce the binary file when compiled. | |
β βββ websurfx.rs # A file that would be compiled into a binary file. | |
βββ cache # A folder that contains code to handle the caching functionality of the search engine. | |
β βββ cacher.rs # Handles the different caching features. | |
β βββ error.rs # Provides custom error messages for different types of caches and their related errors. | |
β βββ mod.rs # A module file for the rust project. | |
β βββ redis_cacher.rs # Provides custom asynchronous pool implementation with auto background reconnection functionality. | |
βββ config # A folder that holds the code to help parse the lua config file that would be used in the app. | |
β βββ mod.rs # A module file for the rust project. | |
β βββ parser.rs # Provides the code to parse the config file. | |
βββ engines # A folder that holds code to handle fetching data from different upstream engines. | |
β βββ brave.rs # Provides code to fetch and remove unnecessary or waste results from the fetched results from the brave search engine. | |
β βββ duckduckgo.rs # Provides code to fetch and remove unnecessary or waste results from the fetched results from the duckduckgo search engine. | |
β βββ mod.rs # A module file for the rust project. | |
β βββ search_result_parser.rs # Provides helper function to help ease the process of defining different result selection selectors. | |
β βββ searx.rs # Provides code to fetch and remove unnecessary or waste results from the fetched results from the searx engine. | |
βββ handler # A folder that provides helper code to provide a proper path to the public (theme) folder, config file, blocklist file, and allowlist file based on where they are located. | |
β βββ mod.rs # A module file for the rust project. | |
β βββ paths.rs # Provides helper code to handle different paths. | |
βββ models # A folder that provides different models for the different modules in the backend code. | |
β βββ aggregation_models.rs # Provides different models (enums, structs) for handling and standardizing different parts in the "results" module code. | |
β βββ engine_models.rs # Provides different models (enums, structs) for handling and standardizing different parts in the "engines" module code. | |
β βββ mod.rs # A module file for the rust project. | |
β βββ parser_models.rs # Provides different models (enums, structs) for handling and standardizing different parts in the "config" module code. | |
β βββ server_models.rs # Provides different models (enums, structs) for handling and standardizing different parts in the "server" module code. | |
βββ results # A folder that provides code to handle the fetching and aggregating of results from the upstream search engines. | |
β βββ aggregator.rs # Provides code aggregate and fetches results from the upstream engines. | |
β βββ mod.rs # A module file for the rust project. | |
β βββ user_agent.rs # Provides a helper function to allow random user agents to pass in the server request code to improve user privacy and avoiding detected as a bot. | |
βββ server # A folder that holds code to handle the routes for the search engine website. | |
β βββ mod.rs # A module file for the rust project. | |
β βββ router.rs # Provides functions to handle the different routes on the website. | |
β βββ routes # A folder that contains code to handle the bigger route for the website. | |
β βββ mod.rs # A module file for the rust project. | |
β βββ search.rs # Provides the function to handle the search route. | |
βββ templates # A module that provides and handles Maud HTML framework source code for the search engine website (subfolders and files are explained in the above frontend section.) | |
``` | |
## Development Tools | |
### Performance - Lighthouse | |
The easiest method of checking performance is to use Chromium's built-in auditing tool, Lighthouse. To run the test, open Developer Tools (usually F12) --> Lighthouse and click on the 'Generate Report' button at the bottom. | |
## Notes | |
### Known warnings | |
When running the build command, a warning appears. This is not an error and does not affect the security or performance of the application. They will be addressed soon in a future update. | |
```shell | |
warning: the following packages contain code that will be rejected by a future version of Rust: html5ever v0.23.0 | |
note: to see what the problems were, use the option `--future-incompat-report`, or run `cargo report future-incompatibilities --id 2` | |
``` | |
This warning just means that any dependencies or code using the `html5ever` code would be deprecated and rejected in future versions of the Rust language. So right now these dependencies can be used as these have not happened yet. | |
[β¬ οΈ Go back to Home](./README.md) | |