Mining/cmd/desktop/mining-desktop
Claude 140f038f37
Some checks failed
Release / Release (push) Blocked by required conditions
Desktop Release / Build darwin (push) Waiting to run
Desktop Release / Build windows (push) Waiting to run
Desktop Release / Create Release (push) Blocked by required conditions
E2E Tests / E2E Tests (push) Failing after 1m23s
Tests / Go Tests (push) Failing after 39s
Desktop Release / Build linux (push) Failing after 46s
Release / Test (push) Failing after 2s
Tests / C++ Tests (push) Failing after 1m12s
chore: migrate module path from github.com to forge.lthn.ai
Move module declaration and all internal imports from
github.com/Snider/Mining to forge.lthn.ai/Snider/Mining. Also updates
Borg, Enchantrix, and Poindexter dependency paths to forge.lthn.ai.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-22 21:39:01 +00:00
..
build feat: Add Wails desktop app with cross-platform GitHub Actions build 2025-12-30 01:55:14 +00:00
frontend build(deps): Bump @modelcontextprotocol/sdk and @angular/cli 2026-02-02 06:07:04 +00:00
.gitignore feat: Add Wails desktop app with cross-platform GitHub Actions build 2025-12-30 01:55:14 +00:00
go.mod chore: migrate module path from github.com to forge.lthn.ai 2026-02-22 21:39:01 +00:00
go.sum build(deps): Bump github.com/quic-go/quic-go 2026-02-02 06:06:32 +00:00
main.go feat: Add CPU throttling, settings manager, and multi-miner tests 2025-12-30 16:35:02 +00:00
miningservice.go chore: migrate module path from github.com to forge.lthn.ai 2026-02-22 21:39:01 +00:00
README.md feat: Add Wails desktop app with cross-platform GitHub Actions build 2025-12-30 01:55:14 +00:00
Taskfile.yml feat: Add Wails desktop app with cross-platform GitHub Actions build 2025-12-30 01:55:14 +00:00
wails3-angular-template.jpg feat: Add Wails desktop app with cross-platform GitHub Actions build 2025-12-30 01:55:14 +00:00

Wails3 Angular Template

  • Angular 20
  • Wails3

Includes the all Angular CLI llm guidelines, Web Awesome, Fontawesome.

Getting Started

  1. Navigate to your project directory in the terminal.

make a new project using Wails3:

wails3 init -n MyWailsApp -t https://github.com/Snider/wails-angular-template@v0.0.1
cd MyWailsApp
  1. To run your application in development mode, use the following command:

    wails3 dev
    

    This will start your application and enable hot-reloading for both frontend and backend changes.

  2. To build your application for production, use:

    wails3 build
    

    This will create a production-ready executable in the build directory.

Exploring Wails3 Features

Now that you have your project set up, it's time to explore the features that Wails3 offers:

  1. Check out the examples: The best way to learn is by example. Visit the examples directory in the v3/examples directory to see various sample applications.

  2. Run an example: To run any of the examples, navigate to the example's directory and use:

    go run .
    

    Note: Some examples may be under development during the alpha phase.

  3. Explore the documentation: Visit the Wails3 documentation for in-depth guides and API references.

  4. Join the community: Have questions or want to share your progress? Join the Wails Discord or visit the Wails discussions on GitHub.

Project Structure

Take a moment to familiarize yourself with your project structure:

  • frontend/: Contains your frontend code (HTML, CSS, JavaScript/TypeScript)
  • main.go: The entry point of your Go backend
  • app.go: Define your application structure and methods here
  • wails.json: Configuration file for your Wails project

Next Steps

  1. Modify the frontend in the frontend/ directory to create your desired UI.
  2. Add backend functionality in main.go.
  3. Use wails3 dev to see your changes in real-time.
  4. When ready, build your application with wails3 build.

Happy coding with Wails3! If you encounter any issues or have questions, don't hesitate to consult the documentation or reach out to the Wails community.