{"id":17994991,"url":"https://github.com/totalkrill/seed-testing","last_synced_at":"2025-08-26T12:11:57.471Z","repository":{"id":92705429,"uuid":"283450637","full_name":"TotalKrill/seed-testing","owner":"TotalKrill","description":"Testing the seed framework","archived":false,"fork":false,"pushed_at":"2020-07-29T09:04:45.000Z","size":4,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-08-03T06:42:59.765Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TotalKrill.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["MartinKavik"],"patreon":"martinkavik"}},"created_at":"2020-07-29T09:04:43.000Z","updated_at":"2020-07-29T09:04:47.000Z","dependencies_parsed_at":"2023-03-09T01:00:41.490Z","dependency_job_id":null,"html_url":"https://github.com/TotalKrill/seed-testing","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":"seed-rs/seed-quickstart","purl":"pkg:github/TotalKrill/seed-testing","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TotalKrill%2Fseed-testing","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TotalKrill%2Fseed-testing/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TotalKrill%2Fseed-testing/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TotalKrill%2Fseed-testing/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TotalKrill","download_url":"https://codeload.github.com/TotalKrill/seed-testing/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TotalKrill%2Fseed-testing/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272219474,"owners_count":24894427,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-26T02:00:07.904Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-29T20:17:25.885Z","updated_at":"2025-08-26T12:11:57.413Z","avatar_url":"https://github.com/TotalKrill.png","language":"Rust","funding_links":["https://github.com/sponsors/MartinKavik","https://patreon.com/martinkavik"],"categories":[],"sub_categories":[],"readme":"# Seed Quickstart\r\n\r\n\u003e Basic Rust-only template for your new Seed app.\r\n\r\n## 1. Create a new project\r\n\r\n1. The simplest way how to do it is to click on the green button **Use this template** on the GitHub [profile](https://github.com/seed-rs/seed-quickstart) of this quickstart.\r\n\r\n1. Make sure Git doesn't automatically convert your newlines to CLRF because linters don't like it.\r\n    - Run `$ git config --global core.autocrlf` in your terminal and it should return `input` or `false`. See [Git docs](https://git-scm.com/book/en/v2/Customizing-Git-Git-Configuration) for more info.\r\n\r\n1. Clone your new repository to your local machine. I use [GitKraken](https://www.gitkraken.com/), but you are probably better developer than me - use your favorite terminal.\r\n\r\n## 2. Install / check required tools\r\n\r\n1. Make sure you have basic tools installed:\r\n\r\n   - [Rust](https://www.rust-lang.org) \r\n     - Check: `$ rustc -V` =\u003e `rustc 1.43.1 (8d69840ab 2020-05-04)`\r\n     - Install: https://www.rust-lang.org/tools/install\r\n   - [cargo-make](https://sagiegurari.github.io/cargo-make/)\r\n     - Check: `$ cargo make -V` =\u003e `cargo-make 0.30.7`\r\n     - Install: `$ cargo install cargo-make`\r\n       \r\n1. Platform-specific tools like `ssl` and `pkg-config`:\r\n    - Follow recommendations in build errors (during the next chapter).\r\n    - _Note_: Don't hesitate to write notes or a tutorial for your platform and create a PR .\r\n\r\n## 3. Prepare your project for work\r\n\r\n1. Open the project in your favorite IDE (I recommend [VS Code](https://code.visualstudio.com/) + [Rust Analyzer](https://rust-analyzer.github.io/)).\r\n1. Open a new terminal tab / window and run: `cargo make serve`\r\n1. Open a second terminal tab and run: `cargo make watch`\r\n1. If you see errors, try to fix them or write on our [chat](https://discord.gg/JHHcHp5) or [forum](https://seed.discourse.group/).\r\n1. Modify files like `README.md` and `Cargo.toml` as you wish.\r\n\r\n## 4. Write your website\r\n\r\n1. Open [localhost:8000](http://localhost:8000) in a browser (I recommend Firefox and Chrome).\r\n1. Modify source files (e.g. `/src/lib.rs` or `/index.html`).\r\n1. Watch compilation in the terminal tab where you run `cargo make watch`.\r\n1. You can watch dev-server responses in the tab where you run `cargo make serve`.\r\n1. Refresh your browser and see changes.\r\n1. Go to step 2.\r\n\r\n## 5. Prepare your project for deploy\r\n\r\n1. Run `cargo make verify` in your terminal to format and lint the code.\r\n1. Run `cargo make build_release`.\r\n1. Upload `index.html` and `pkg` into your server's public folder.\r\n   - Don't forget to upload also configuration files for your hosting, see the [Netlify](https://www.netlify.com/) one below.\r\n\r\n```toml\r\n# netlify.toml\r\n[[redirects]]\r\n  from = \"/*\"\r\n  to = \"/index.html\"\r\n  status = 200\r\n```\r\n\r\n## Other Seed quickstarts and projects\r\n\r\n- [seed-rs/awesome-seed-rs](https://github.com/seed-rs/awesome-seed-rs)\r\n\r\n---\r\n\r\n**!!! New Rust-only quickstart in development! =\u003e [Seeder](https://github.com/MartinKavik/seeder) !!!**\r\n\r\n---\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftotalkrill%2Fseed-testing","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftotalkrill%2Fseed-testing","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftotalkrill%2Fseed-testing/lists"}