blockconvert
Malware, advert and tracking blacklist
File Explorer
Download Latest Version (.zip)- config.toml
- launch.json
- settings.json
- example.spec.ts
- package-lock.json
- package.json
- playwright.config.ts
- adblock.txt
- allow_regex.txt
- allowlist.txt
- block_ipnets.txt
- block_ips.txt
- block_regex.txt
- blocklist.txt
- 20240222234126_filterlists.sql
- 20240223010915_lastmodified.sql
- 20240223011106_lastmodified.sql
- 20240223011400_etag.sql
- 20240224194439_rules.sql
- 20240224195223_filter_list_contents.sql
- 20240224203224_list_rules.sql
- 20240225214254_list_source.sql
- 20240225230839_index.sql
- 20240225231841_index.sql
- 20240225232249_index.sql
- 20240226004619_change_date.sql
- 20240226013547_source.sql
- 20240226152939_temp.sql
- 20240226215547_remove_column.sql
- 20240226215929_remove_id.sql
- 20240226220711_remove_fkey.sql
- 20240226223817_domain_rules.sql
- 20240226230317_domain_block.sql
- 20240226230425_rename.sql
- 20240227191530_drop_column.sql
- 20240227194830_drop_column.sql
- 20240227200629_drop_table.sql
- 20240227201410_primary_key.sql
- 20240228001134_domain_rules.sql
- 20240228004601_extend_rules.sql
- 20240228005409_drop_rule.sql
- 20240228015906_change_unique.sql
- 20240228164553_ip.sql
- 20240228170646_ip.sql
- 20240228175807_remove_unknown.sql
- 20240228180753_index.sql
- 20240229210101_domains.sql
- 20240229212527_subdomains.sql
- 20240301000455_more_indexes.sql
- 20240301000900_subdomain_idx.sql
- 20240301030213_subdomain_inde.sql
- 20240302171950_expanded_subdomains.sql
- 20240302184040_processed_subdomains.sql
- 20240302192658_index.sql
- 20240302194037_domain_rule_id_idx.sql
- 20240302194733_not_null_parent.sql
- 20240302205633_not_null#.sql
- 20240302222401_dns.sql
- 20240304235746_filterlist.sql
- 20240305000257_filterlist.sql
- 20240305000612_filterlist.sql
- 20240305003411_filterlist.sql
- 20240305200551_rule_matches.sql
- 20240306123603_rule_count.sql
- 20240306214217_index.sql
- 20240307005702_lists.sql
- 20240307012450_index.sql
- 20240307031445_idx.sql
- adblock.txt
- allowed_ips.txt
- domains.rpz
- domains.txt
- hosts.txt
- ip_blocklist.txt
- whitelist_adblock.txt
- whitelist_domains.txt
- favicon.ico
- app.rs
- domain.rs
- error_template.rs
- fileserv.rs
- filterlist.rs
- home_page.rs
- ip_view.rs
- lib.rs
- main.rs
- rule.rs
- server.rs
- stats_view.rs
- tasks.rs
- main.scss
- tailwind.css
- .gitattributes
- .gitignore
- _config.yml
- build.rs
- Cargo.toml
- CONTRIBUTING.md
- filterlists.csv
- LICENSE
- local.toml
- local2.toml
- package-lock.json
- package.json
- README.md
- rust-toolchain.toml
- rustfmt.toml
- tailwind.config.js
- tld_list.txt
- update.sh
# Installation Guide
1. Get the code
git clone https://github.com/mkb2091/blockconvert
Downloads the entire project code from GitHub to your computer.
cd blockconvert
Moves into the project folder you just downloaded.
2. Node.js
Easy RecommendedPrerequisites
cd end2end
This project's files live in a subfolder, so move into it first.
npm install
Downloads and installs the libraries listed in package.json.
npm start
Starts the development/run server.
After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.
3. Rust
MediumPrerequisites
- Git Needed to download the project code from GitHub.
- Rust (rustup) Installing via rustup also installs cargo.
cargo build --release
Compiles the Rust project.
cargo run
Builds and then immediately runs the program.
If cargo build finishes without errors, it worked. The executable is created under target/.
// repository documentation
Was this content helpful?
(0 ratings)
