diff --git a/.gitignore b/.gitignore index a46dc15..c367983 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /dist/ bbrew +node_modules diff --git a/Makefile b/Makefile index de29faf..8e2eba4 100644 --- a/Makefile +++ b/Makefile @@ -35,4 +35,18 @@ run: build ############################## .PHONY: lint lint: - @golangci-lint run \ No newline at end of file + @golangci-lint run + +############################## +# WEBSITE +############################## +.PHONY: build-site +build-site: + @node build.js + +.PHONY: serve-site +serve-site: + @npx http-server docs -p 3000 + +.PHONY: dev-site +dev-site: build-site serve-site \ No newline at end of file diff --git a/build.js b/build.js new file mode 100644 index 0000000..f1a2f2a --- /dev/null +++ b/build.js @@ -0,0 +1,228 @@ +const ejs = require('ejs'); +const fs = require('fs'); +const path = require('path'); +const marked = require('marked'); +const frontMatter = require('front-matter'); +const ejsLayouts = require('ejs-layouts'); + +// Configuration +const config = { + srcDir: 'site', + distDir: 'docs', + templatesDir: 'site/templates', + contentDir: 'site/content', + site: { + name: 'Bold Brew', + description: 'A modern TUI for Homebrew', + url: 'https://bold-brew.com' + } +}; + +// Function to generate a page +async function generatePage(template, data, outputPath) { + const templatePath = path.join(config.templatesDir, template); + const templateContent = fs.readFileSync(templatePath, 'utf-8'); + const layoutPath = path.join(config.templatesDir, 'layout.ejs'); + const layoutContent = fs.readFileSync(layoutPath, 'utf-8'); + + // Render the template content + const content = ejs.render(templateContent, { + ...data, + filename: templatePath + }); + + // Render the layout with the content + const html = ejs.render(layoutContent, { + ...data, + filename: layoutPath, + content + }); + + fs.mkdirSync(path.dirname(outputPath), { recursive: true }); + fs.writeFileSync(outputPath, html); +} + +// Function to generate the homepage +async function generateHomepage() { + const posts = getBlogPosts(); + await generatePage('index.ejs', { + title: 'Bold Brew (bbrew) - Modern Homebrew TUI Manager for macOS', + description: 'Bold Brew (bbrew) is the modern Terminal User Interface for Homebrew on macOS. Install, update, and manage packages with an elegant TUI. The perfect alternative to traditional Homebrew commands.', + keywords: 'bbrew, Bold Brew, Homebrew TUI, macOS package manager, Homebrew GUI, terminal package manager, Homebrew alternative, macOS development tools', + canonicalUrl: config.site.url, + ogType: 'website', + posts, + site: config.site + }, path.join(config.distDir, 'index.html')); +} + +// Function to generate the blog +async function generateBlog() { + // Generate the main blog page + await generatePage('blog/index.ejs', { + title: 'Blog | Bold Brew (bbrew)', + description: 'Tips, tutorials, and guides for managing Homebrew packages on macOS', + keywords: 'Homebrew blog, macOS tutorials, package management, Bold Brew guides', + canonicalUrl: `${config.site.url}/blog/`, + ogType: 'website', + breadcrumb: [ + { text: 'Home', url: '/' }, + { text: 'Blog', url: '/blog/' } + ], + posts: getBlogPosts(), + site: config.site + }, path.join(config.distDir, 'blog/index.html')); + + // Generate article pages + const blogDir = path.join(__dirname, config.contentDir, 'blog'); + if (fs.existsSync(blogDir)) { + const files = fs.readdirSync(blogDir) + .filter(file => file.endsWith('.md')); + + for (const file of files) { + const filePath = path.join(blogDir, file); + const content = fs.readFileSync(filePath, 'utf8'); + const { attributes, body } = frontMatter(content); + const htmlContent = marked.parse(body); + const outputFile = file.replace('.md', '.html'); + + await generatePage('blog/post.ejs', { + title: attributes.title || '', + description: attributes.description || '', + keywords: attributes.keywords || 'Homebrew, macOS, package management, Bold Brew, bbrew, terminal, development tools', + date: attributes.date || '', + content: htmlContent, + canonicalUrl: `${config.site.url}/blog/${outputFile}`, + ogType: 'article', + breadcrumb: [ + { text: 'Home', url: '/' }, + { text: 'Blog', url: '/blog/' }, + { text: attributes.title || '', url: `/blog/${outputFile}` } + ], + site: config.site + }, path.join(config.distDir, 'blog', outputFile)); + } + } +} + +function getBlogPosts() { + const blogDir = path.join(__dirname, config.contentDir, 'blog'); + const posts = []; + + if (!fs.existsSync(blogDir)) { + return posts; + } + + const files = fs.readdirSync(blogDir) + .filter(file => file.endsWith('.md')); + + for (const file of files) { + const content = fs.readFileSync(path.join(blogDir, file), 'utf8'); + const { attributes } = frontMatter(content); + const outputFile = file.replace('.md', '.html'); + + if (attributes.title && attributes.date) { + posts.push({ + title: attributes.title, + date: attributes.date, + url: `/blog/${outputFile}`, + excerpt: attributes.description || '' + }); + } + } + + return posts.sort((a, b) => new Date(b.date) - new Date(a.date)); +} + +// Function to generate the sitemap +async function generateSitemap() { + const posts = getBlogPosts(); + const baseUrl = config.site.url; + const today = new Date().toISOString().split('T')[0]; + + // Static pages + const staticPages = [ + { + url: '/', + lastmod: today, + changefreq: 'weekly', + priority: '1.0' + }, + { + url: '/blog/', + lastmod: today, + changefreq: 'weekly', + priority: '0.9' + } + ]; + + // Blog pages + const blogPages = posts.map(post => ({ + url: post.url, + lastmod: post.date, + changefreq: 'monthly', + priority: '0.8' + })); + + // Combine all pages + const allPages = [...staticPages, ...blogPages]; + + // Generate XML content + const sitemapContent = ` + +${allPages.map(page => ` + ${baseUrl}${page.url} + ${page.lastmod} + ${page.changefreq ? `${page.changefreq}` : ''} + ${page.priority ? `${page.priority}` : ''} + `).join('\n')} +`; + + // Write the sitemap.xml file + fs.writeFileSync(path.join(config.distDir, 'sitemap.xml'), sitemapContent); +} + +// Main function +async function build() { + try { + // Clean the output directory while preserving assets, .git and other static files + if (fs.existsSync(config.distDir)) { + // Read all files in the docs directory + const files = fs.readdirSync(config.distDir); + + // List of files/directories to preserve + const preserveFiles = [ + 'assets', + '.git', + 'manifest.json', + 'robots.txt', + 'CNAME' + ]; + + // Remove only dynamically generated files + for (const file of files) { + if (!preserveFiles.includes(file)) { + const filePath = path.join(config.distDir, file); + // Check if it's a dynamically generated HTML file + if (file.endsWith('.html')) { + fs.rmSync(filePath, { recursive: true, force: true }); + } + } + } + } else { + fs.mkdirSync(config.distDir); + } + + // Generate pages + await generateHomepage(); + await generateBlog(); + await generateSitemap(); + + console.log('Build completed successfully!'); + } catch (error) { + console.error('Build failed:', error); + process.exit(1); + } +} + +build(); \ No newline at end of file diff --git a/docs/styles.css b/docs/assets/css/styles.css similarity index 100% rename from docs/styles.css rename to docs/assets/css/styles.css diff --git a/docs/blog/essential-homebrew-commands.html b/docs/blog/essential-homebrew-commands.html index 6a351ed..f394408 100644 --- a/docs/blog/essential-homebrew-commands.html +++ b/docs/blog/essential-homebrew-commands.html @@ -3,168 +3,276 @@ - 10 Essential Homebrew Commands You Should Know | Bold Brew Blog + 10 Essential Homebrew Commands You Should Know - + - + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + +
-
+ + +
- -
-
-

10 Essential Homebrew Commands You Should Know

-
- March 29, 2024 - By Valkyrie00 -
-
+ -
-

Homebrew is a powerful package manager for macOS, but its command-line interface can be overwhelming. In this guide, we'll cover the 10 most essential Homebrew commands that every macOS user should know.

+
+

10 Essential Homebrew Commands You Should Know

+

Homebrew is the most popular package manager for macOS, and mastering its commands is essential for efficient package management. In this guide, we'll explore the 10 most important Homebrew commands that every macOS user should know.

+

1. Install Packages

+

The most basic and commonly used command is brew install:

+
brew install package_name
+
+

You can also install multiple packages at once:

+
brew install package1 package2 package3
+
+

2. Update Homebrew

+

Keep your Homebrew installation up to date:

+
brew update
+
+

This command updates Homebrew's package database to the latest version.

+

3. Upgrade Packages

+

Upgrade all installed packages:

+
brew upgrade
+
+

Or upgrade a specific package:

+
brew upgrade package_name
+
+

4. Remove Packages

+

Uninstall a package:

+
brew uninstall package_name
+
+

5. Get Package Information

+

View detailed information about a package:

+
brew info package_name
+
+

6. List Installed Packages

+

See all currently installed packages:

+
brew list
+
+

7. Search for Packages

+

Find packages in the Homebrew repository:

+
brew search package_name
+
+

8. Check System Status

+

Diagnose your Homebrew installation:

+
brew doctor
+
+

9. Clean Up

+

Remove old versions and clean the cache:

+
brew cleanup
+
+

10. Manage Taps

+

List tapped repositories:

+
brew tap
+
+

Add a new tap:

+
brew tap user/repo
+
+

Pro Tips

+
    +
  1. Combine update and upgrade:
  2. +
+
brew update && brew upgrade
+
+
    +
  1. Use brew doctor regularly to maintain a healthy Homebrew installation.

    +
  2. +
  3. Consider using Bold Brew for a more intuitive package management experience.

    +
  4. +
+

Conclusion

+

These commands form the foundation of Homebrew usage. While mastering the command line is important, tools like Bold Brew can make package management more intuitive and efficient.

+

Remember to check the Bold Brew documentation for more tips and tricks on managing your Homebrew packages.

-

1. Package Installation

-
brew install package_name
-

This is the most basic and commonly used command. For example:

-
brew install git
-

You can also install multiple packages at once:

-
brew install git node python
+
-

2. Package Updates

-
brew update
-

Updates Homebrew's package database. Always run this before installing new packages or upgrading existing ones.

- -

3. Upgrade Packages

-
brew upgrade
-

Upgrades all installed packages to their latest versions. To upgrade a specific package:

-
brew upgrade package_name
- -

4. Package Removal

-
brew uninstall package_name
-

Removes a package from your system. For example:

-
brew uninstall git
- -

5. Package Information

-
brew info package_name
-

Shows detailed information about a package, including its dependencies and installation status.

- -

6. List Installed Packages

-
brew list
-

Shows all packages currently installed on your system.

- -

7. Search for Packages

-
brew search package_name
-

Searches for packages in the Homebrew repository. For example:

-
brew search python
- -

8. System Check

-
brew doctor
-

Diagnoses your Homebrew installation and suggests fixes for common issues.

- -

9. Clean Up

-
brew cleanup
-

Removes old versions of installed packages and cleans up the Homebrew cache.

- -

10. Tap Management

-
brew tap
-

Lists all tapped repositories. To add a new tap:

-
brew tap user/repo
- -

Making Command Management Easier with Bold Brew

-

While these commands are powerful, remembering them all can be challenging. That's where Bold Brew comes in. It provides a visual interface for all these operations:

-
brew install Valkyrie00/homebrew-bbrew/bbrew
-

With Bold Brew, you can:

-
    -
  • Search and install packages with a visual interface
  • -
  • Update packages with a few clicks
  • -
  • View package information in a structured format
  • -
  • Manage dependencies visually
  • -
- -

Pro Tips

-
    -
  • Use brew update && brew upgrade to update everything at once
  • -
  • Combine brew cleanup with upgrades to keep your system clean
  • -
  • Use brew doctor regularly to maintain a healthy Homebrew installation
  • -
- -
-

Want to make package management even easier? Try Bold Brew:

-
brew install Valkyrie00/homebrew-bbrew/bbrew
-
- - +
-
+ + + +
+

© 2024 Bold Brew | GitHub

+
+ + + + + + - \ No newline at end of file diff --git a/docs/blog/index.html b/docs/blog/index.html index 84397b2..b2501c6 100644 --- a/docs/blog/index.html +++ b/docs/blog/index.html @@ -3,151 +3,266 @@ - Bold Brew Blog - Homebrew Tips, Tutorials & Guides - - + Blog | Bold Brew (bbrew) + + - - - + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + +
-
+ + +
- -
-

Bold Brew Blog

-

Tips, tutorials, and guides for managing Homebrew packages on macOS

-
+ +
+ +
+ -
-
-
+
+

Bold Brew Blog

+

Tips, tutorials, and guides for managing Homebrew packages on macOS

+
+ +
+
+
+ - + - + + +
+
+ +
-
+ + + +
+

© 2024 Bold Brew | GitHub

+
+ + + + + + - \ No newline at end of file diff --git a/docs/blog/install-homebrew-macos.html b/docs/blog/install-homebrew-macos.html index eb30c39..6a3f25c 100644 --- a/docs/blog/install-homebrew-macos.html +++ b/docs/blog/install-homebrew-macos.html @@ -3,175 +3,291 @@ - How to Install and Configure Homebrew on macOS | Bold Brew Blog + How to Install and Configure Homebrew on macOS - + - + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + +
-
+ + +
- -
-
-

How to Install and Configure Homebrew on macOS

-
- March 29, 2024 - By Valkyrie00 -
-
+ -
-

Homebrew is the most popular package manager for macOS, making it easy to install and manage software packages. In this comprehensive guide, we'll walk you through the installation process and show you how to configure it properly.

+
+

How to Install and Configure Homebrew on macOS

+

Homebrew is the most popular package manager for macOS, making it easy to install and manage software packages. In this guide, we'll walk you through the process of installing and configuring Homebrew on your Mac.

+

Prerequisites

+

Before installing Homebrew, make sure you have:

+
    +
  • macOS 10.15 or later
  • +
  • Command Line Tools for Xcode installed
  • +
  • A stable internet connection
  • +
+

Installation Steps

+
    +
  1. First, install the Command Line Tools for Xcode:
  2. +
+
xcode-select --install
+
+
    +
  1. Install Homebrew by running this command in Terminal:
  2. +
+
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
+
+
    +
  1. Add Homebrew to your PATH (if prompted):
  2. +
+
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> ~/.zshrc
+eval "$(/opt/homebrew/bin/brew shellenv)"
+
+

Verify Installation

+

Check if Homebrew is installed correctly:

+
brew --version
+
+

Basic Configuration

+
    +
  1. Update Homebrew:
  2. +
+
brew update
+
+
    +
  1. Upgrade all packages:
  2. +
+
brew upgrade
+
+
    +
  1. Check system status:
  2. +
+
brew doctor
+
+

Common Issues and Solutions

+
    +
  1. Permission Issues

    +
      +
    • If you encounter permission errors, run:
    • +
    +
    sudo chown -R $(whoami) /opt/homebrew
    +
    +
  2. +
  3. Slow Downloads

    +
      +
    • Consider using a mirror:
    • +
    +
    export HOMEBREW_BREW_GIT_REMOTE="https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git"
    +export HOMEBREW_CORE_GIT_REMOTE="https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git"
    +
    +
  4. +
  5. Network Issues

    +
      +
    • Check your internet connection
    • +
    • Try using a VPN if needed
    • +
    +
  6. +
+

Next Steps

+

Now that you have Homebrew installed, you can:

+
    +
  1. Install packages using brew install
  2. +
  3. Search for packages using brew search
  4. +
  5. Update packages using brew upgrade
  6. +
  7. Remove packages using brew uninstall
  8. +
+

For a more intuitive package management experience, consider using Bold Brew, a modern Terminal User Interface (TUI) for Homebrew.

+

Conclusion

+

Homebrew is an essential tool for macOS users, making it easy to install and manage software packages. With proper installation and configuration, you'll have a powerful package manager at your disposal.

+

Remember to keep Homebrew updated and run brew doctor regularly to maintain a healthy installation.

-

Prerequisites

-

Before installing Homebrew, make sure you have:

-
    -
  • macOS 10.15 Catalina or newer
  • -
  • Command Line Tools for Xcode installed
  • -
  • Administrator access to your Mac
  • -
+
-

Installing Command Line Tools

-

First, install the Command Line Tools by running:

-
xcode-select --install
-

A popup window will appear asking you to confirm the installation. Click "Install" and wait for the process to complete.

- -

Installing Homebrew

-

Now, let's install Homebrew. Open Terminal and run:

-
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
-

This command will:

-
    -
  1. Download the Homebrew installation script
  2. -
  3. Install Homebrew in the recommended location
  4. -
  5. Set up the necessary directories and permissions
  6. -
- -

Configuring Homebrew

-

After installation, you need to add Homebrew to your PATH. Run these commands:

-
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> ~/.zshrc
-eval "$(/opt/homebrew/bin/brew shellenv)"
- -

Verifying the Installation

-

To verify that Homebrew is installed correctly, run:

-
brew --version
-

You should see the Homebrew version number. Also, run:

-
brew doctor
-

This command will check your system for potential problems and provide recommendations.

- -

Updating Homebrew

-

It's important to keep Homebrew up to date. Run:

-
brew update
- -

Installing Your First Package

-

Now that Homebrew is installed, you can install packages. For example, to install Git:

-
brew install git
- -

Using Bold Brew for Package Management

-

While Homebrew's command-line interface is powerful, managing packages can be more intuitive with a Terminal User Interface (TUI). That's where Bold Brew comes in:

-
brew install Valkyrie00/homebrew-bbrew/bbrew
-

Bold Brew provides a visual interface for managing your Homebrew packages, making it easier to:

-
    -
  • Search for packages
  • -
  • Install and remove packages
  • -
  • Update packages
  • -
  • Manage dependencies
  • -
- -

Common Issues and Solutions

-

Permission Issues

-

If you encounter permission issues, run:

-
sudo chown -R $(whoami) /usr/local/*
- -

Update Failures

-

If updates fail, try:

-
brew update-reset
- -

Next Steps

-

Now that you have Homebrew installed, you can:

-
    -
  • Install development tools
  • -
  • Set up your development environment
  • -
  • Install productivity applications
  • -
  • Manage system utilities
  • -
- -
-

Want to make package management even easier? Try Bold Brew:

-
brew install Valkyrie00/homebrew-bbrew/bbrew
-
- - +
-
+ + + +
+

© 2024 Bold Brew | GitHub

+
+ + + + + + - \ No newline at end of file diff --git a/docs/blog/managing-homebrew-packages.html b/docs/blog/managing-homebrew-packages.html index 5f2b64e..4046a0c 100644 --- a/docs/blog/managing-homebrew-packages.html +++ b/docs/blog/managing-homebrew-packages.html @@ -3,163 +3,317 @@ - Managing Homebrew Packages on macOS: A Complete Guide | Bold Brew Blog + Managing Homebrew Packages on macOS with Bold Brew - + - - + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + +
-
+ + +
- -
-
-

Managing Homebrew Packages on macOS: A Complete Guide

-
- March 29, 2024 - By Valkyrie00 -
-
+ -
-

Homebrew is the de facto package manager for macOS, but managing packages through the command line can be challenging. In this guide, we'll explore how Bold Brew (bbrew) can simplify your package management workflow.

+
+

Managing Homebrew Packages on macOS with Bold Brew

+

Managing Homebrew packages through the command line can be challenging, especially when dealing with multiple packages or complex dependencies. Bold Brew provides a modern Terminal User Interface (TUI) that makes package management more intuitive and efficient.

+

Why Use Bold Brew?

+

Bold Brew offers several advantages over traditional command-line package management:

+
    +
  1. Visual Interface

    +
      +
    • Easy-to-read package lists
    • +
    • Clear dependency visualization
    • +
    • Intuitive navigation
    • +
    +
  2. +
  3. Efficient Workflow

    +
      +
    • Quick package search
    • +
    • One-click installation/removal
    • +
    • Batch operations
    • +
    +
  4. +
  5. Better Organization

    +
      +
    • Group packages by category
    • +
    • Track package status
    • +
    • Monitor system health
    • +
    +
  6. +
+

Installation

+

Install Bold Brew using Homebrew:

+
brew install Valkyrie00/homebrew-bbrew/bbrew
+
+

Key Features

+

1. Package Search

+
    +
  • Real-time search as you type
  • +
  • Filter by name, description, or category
  • +
  • View package details before installation
  • +
+

2. Package Management

+
    +
  • Install/remove packages with a single keypress
  • +
  • Update packages individually or in bulk
  • +
  • View package dependencies
  • +
+

3. System Monitoring

+
    +
  • Check Homebrew system status
  • +
  • Monitor disk usage
  • +
  • View installation logs
  • +
+

4. User Interface

+
    +
  • Keyboard-driven navigation
  • +
  • Color-coded status indicators
  • +
  • Contextual help
  • +
+

Best Practices

+
    +
  1. Regular Updates

    +
      +
    • Keep packages up to date
    • +
    • Monitor for outdated packages
    • +
    • Check system health regularly
    • +
    +
  2. +
  3. Package Organization

    +
      +
    • Group related packages
    • +
    • Track package purposes
    • +
    • Maintain a clean system
    • +
    +
  4. +
  5. Dependency Management

    +
      +
    • Review dependencies before installation
    • +
    • Clean up orphaned packages
    • +
    • Monitor disk usage
    • +
    +
  6. +
+

Tips and Tricks

+
    +
  1. Keyboard Shortcuts

    +
      +
    • ? - Show help
    • +
    • q - Quit
    • +
    • space - Select/deselect
    • +
    • enter - Execute action
    • +
    +
  2. +
  3. Search Tips

    +
      +
    • Use partial matches
    • +
    • Filter by category
    • +
    • Sort by various criteria
    • +
    +
  4. +
  5. Maintenance

    +
      +
    • Regular cleanup
    • +
    • System health checks
    • +
    • Package updates
    • +
    +
  6. +
+

Conclusion

+

Bold Brew transforms Homebrew package management from a command-line chore into an intuitive, visual experience. Whether you're a casual user or a power user, Bold Brew can help you manage your Homebrew packages more efficiently.

+

For more information, visit the Bold Brew documentation or check out our other guides on Homebrew management.

-

Why Use a TUI for Homebrew?

-

While Homebrew's command-line interface is powerful, it can be overwhelming for many users. A Terminal User Interface (TUI) like Bold Brew provides several advantages:

-
    -
  • Visual package management
  • -
  • Intuitive navigation
  • -
  • Quick access to common operations
  • -
  • Better overview of installed packages
  • -
+
-

Getting Started with Bold Brew

-

Installing Bold Brew is straightforward:

-
brew install Valkyrie00/homebrew-bbrew/bbrew
-

Once installed, simply run:

-
bbrew
- -

Key Features for Package Management

-

1. Package Installation

-

With Bold Brew, installing packages becomes a visual experience. You can:

-
    -
  • Search for packages in real-time
  • -
  • View package details before installation
  • -
  • Install multiple packages at once
  • -
  • See installation progress visually
  • -
- -

2. Package Updates

-

Keeping your packages up to date is crucial for security and functionality. Bold Brew makes this process simple:

-
    -
  • View all outdated packages at a glance
  • -
  • Select which packages to update
  • -
  • Monitor update progress
  • -
  • Handle update failures gracefully
  • -
- -

3. Dependency Management

-

Package dependencies can be complex. Bold Brew helps you:

-
    -
  • Visualize package relationships
  • -
  • Identify orphaned dependencies
  • -
  • Clean up unused packages
  • -
  • Resolve dependency conflicts
  • -
- -

Best Practices

-

To get the most out of Bold Brew and Homebrew, follow these best practices:

-
    -
  1. Regularly update your packages
  2. -
  3. Clean up unused dependencies
  4. -
  5. Back up your Homebrew configuration
  6. -
  7. Use the search feature before installing new packages
  8. -
- -

Common Issues and Solutions

-

Even with a TUI, you might encounter some common issues:

-
    -
  • Permission issues: Use sudo chown -R $(whoami) /usr/local/*
  • -
  • Update failures: Try brew update-reset
  • -
  • Broken dependencies: Use brew doctor
  • -
- -

Conclusion

-

Bold Brew transforms the way you manage Homebrew packages on macOS. By providing a visual interface to package management, it makes the process more intuitive and efficient. Whether you're a seasoned developer or new to macOS, Bold Brew can help you manage your packages more effectively.

- -
-

Ready to try Bold Brew? Install it now with:

-
brew install Valkyrie00/homebrew-bbrew/bbrew
-
+
-
+ + + +
+

© 2024 Bold Brew | GitHub

+
+ + + + + + - \ No newline at end of file diff --git a/docs/index.html b/docs/index.html index 31172c5..6dce811 100644 --- a/docs/index.html +++ b/docs/index.html @@ -12,7 +12,7 @@ - + @@ -20,8 +20,8 @@ - - + + @@ -39,22 +39,21 @@ - - - - + + + + - + - - - - - - + + + + + @@ -97,387 +96,395 @@
-
+ + +
-
-
-
-
- Bold Brew Logo -

Bold Brew

-

bbrew

-

A fast and practical TUI that simplifies your Homebrew package management on macOS, making installations and updates effortless

-
- Version - License - Build Status - Downloads -
- +
+
+
+
+ Bold Brew Logo +

Bold Brew

+

bbrew

+

A fast and practical TUI that simplifies your Homebrew package management on macOS, making installations and updates effortless

+
+ Version + License + Build Status + Downloads +
+
-
+
+
-
-
-

Installation

-

Get started with Bold Brew in just a few simple commands

-
-
-
-
-
-
1
-

Install Bold Brew

-
-
-
> brew install Valkyrie00/homebrew-bbrew/bbrew
- -
-

This installs Bold Brew directly from the repository via Homebrew

+
+
+

Installation

+

Get started with Bold Brew in just a few simple commands

+
+
+
+
+
+
1
+

Install Bold Brew

- -
-
-
2
-

Run Bold Brew

-
-
-
> bbrew
- -
+
+
> brew install Valkyrie00/homebrew-bbrew/bbrew
+
+

This installs Bold Brew directly from the repository via Homebrew

-
-
- OR +
+
+
2
+

Run Bold Brew

-

Download the latest version directly from GitHub

-
- - - Download Latest Release - +
+
> bbrew
+
+ +
+
+ OR +
+

Download the latest version directly from GitHub

+ +
-
+
+
-
-
-

Screenshots

-

Explore the Bold Brew interface and its features

+
+
+

Screenshots

+

Explore the Bold Brew interface and its features

-
-
-
- Main Dashboard showing package management interface -
-

Main Dashboard

-
-
+
+
+
+ Main Dashboard showing package management interface +
+

Main Dashboard

+
+
+
+
+
+ Installed packages management view +
+

Handle Installed Packages

+
+
+
+
+
+ Package search interface +
+

Search for Packages

+
+
+
+
+
+
+ +
+
+

Features

+
+
+
+ +

Search Packages

+

Easily search and find Homebrew packages with our intuitive interface.

-
-
- Installed packages management view -
-

Handle Installed Packages

-
-
+
+
+
+ +

Install & Update

+

Install, update, and manage packages with just a few clicks.

-
-
- Package search interface -
-

Search for Packages

-
-
+
+
+
+ +

System Management

+

Monitor system status and manage Homebrew services efficiently.

-
+
+
-
-
-

Features

-
-
-
- -

Search Packages

-

Easily search and find Homebrew packages with our intuitive interface.

-
-
-
-
- -

Install & Update

-

Install, update, and manage packages with just a few clicks.

-
-
-
-
- -

System Management

-

Monitor system status and manage Homebrew services efficiently.

-
-
-
-
-
- -
-
-

Latest Articles

-
+
+
+

Latest Articles

+
+
-

10 Essential Homebrew Commands

-

Master the most important Homebrew commands for macOS package management.

- Read more → +

10 Essential Homebrew Commands You Should Know

+

Master the most important Homebrew commands for macOS package management. Learn how to install, update, and manage packages efficiently.

+ Read more →
+
-

Install Homebrew on macOS

-

Learn how to install and configure Homebrew on your Mac.

- Read more → +

How to Install and Configure Homebrew on macOS

+

Learn how to install and configure Homebrew on macOS. A step-by-step guide to setting up the most popular package manager for macOS.

+ Read more →
+
-

Managing Packages with Bold Brew

-

Discover how to efficiently manage Homebrew packages using Bold Brew.

- Read more → +

Managing Homebrew Packages on macOS with Bold Brew

+

Learn how to efficiently manage Homebrew packages on macOS using Bold Brew. Discover best practices, tips, and tricks for package management.

+ Read more →
-
- + +
+
+ +
+
+

Manage Homebrew Packages on macOS with Bold Brew

+
+
+

Bold Brew transforms the way developers manage Homebrew packages on macOS with its elegant Terminal User Interface. Stop struggling with complex command-line syntax and enjoy a streamlined package management experience.

+ +

Why macOS Users Choose Bold Brew

+

Managing your Homebrew ecosystem has never been easier. Bold Brew provides real-time visual feedback for installations, updates, and package removals—all while maintaining the speed and efficiency you expect from terminal-based applications.

+ +

Key Benefits for macOS Developers

+
    +
  • Faster package discovery with intuitive search functionality
  • +
  • Simplified dependency management with visual relationship mapping
  • +
  • Streamlined updates for all installed Homebrew packages
  • +
  • One-click installations without memorizing complex commands
  • +
+ +

Built specifically for macOS users who rely on Homebrew, Bold Brew integrates perfectly with your development workflow while reducing cognitive load and increasing productivity.

-
+
+
-
-
-

Manage Homebrew Packages on macOS with Bold Brew

-
-
-

Bold Brew transforms the way developers manage Homebrew packages on macOS with its elegant Terminal User Interface. Stop struggling with complex command-line syntax and enjoy a streamlined package management experience.

+
+
+

About Bold Brew for macOS

+
+
+

The modern Homebrew package manager that macOS developers have been waiting for

-

Why macOS Users Choose Bold Brew

-

Managing your Homebrew ecosystem has never been easier. Bold Brew provides real-time visual feedback for installations, updates, and package removals—all while maintaining the speed and efficiency you expect from terminal-based applications.

+

The Bold Brew Advantage

+

Bold Brew was designed from the ground up to address the limitations of traditional Homebrew management. By providing a Terminal User Interface (TUI), Bold Brew combines the efficiency of command-line operations with intuitive visual feedback.

-

Key Benefits for macOS Developers

+

Homebrew Integration

+

As a dedicated Homebrew TUI manager for macOS, Bold Brew seamlessly integrates with your existing Homebrew installation. All operations—from searching the formula repository to managing casks—are visualized through an elegant interface while preserving the speed and reliability of Homebrew's core functionality.

+ +
+

System Requirements

    -
  • Faster package discovery with intuitive search functionality
  • -
  • Simplified dependency management with visual relationship mapping
  • -
  • Streamlined updates for all installed Homebrew packages
  • -
  • One-click installations without memorizing complex commands
  • +
  • macOS 10.15 Catalina or newer
  • +
  • Homebrew installation
  • +
  • Terminal with true color support
- -

Built specifically for macOS users who rely on Homebrew, Bold Brew integrates perfectly with your development workflow while reducing cognitive load and increasing productivity.

+ +

Whether you're a seasoned developer or new to macOS package management, Bold Brew streamlines your workflow and makes Homebrew more accessible than ever before.

-
+
+
-
-
-

About Bold Brew for macOS

-
-
-

The modern Homebrew package manager that macOS developers have been waiting for

- -

The Bold Brew Advantage

-

Bold Brew was designed from the ground up to address the limitations of traditional Homebrew management. By providing a Terminal User Interface (TUI), Bold Brew combines the efficiency of command-line operations with intuitive visual feedback.

- -

Homebrew Integration

-

As a dedicated Homebrew TUI manager for macOS, Bold Brew seamlessly integrates with your existing Homebrew installation. All operations—from searching the formula repository to managing casks—are visualized through an elegant interface while preserving the speed and reliability of Homebrew's core functionality.

- -
-

System Requirements

-
    -
  • macOS 10.15 Catalina or newer
  • -
  • Homebrew installation
  • -
  • Terminal with true color support
  • -
+
+
+

FAQ

+

Frequently asked questions about Bold Brew

+
+
+
+
+
+

What is Bold Brew?

+
+ + + +
+
+
+

Bold Brew (bbrew) is a modern Terminal User Interface for managing Homebrew packages on macOS. It provides an elegant and intuitive way to install, update, and manage your Homebrew packages without memorizing complex commands.

+
-

Whether you're a seasoned developer or new to macOS package management, Bold Brew streamlines your workflow and makes Homebrew more accessible than ever before.

-
-
-
-
- -
-
-

FAQ

-

Frequently asked questions about Bold Brew

-
-
-
-
-
-

What is Bold Brew?

-
- + - -
-
-
-

Bold Brew (bbrew) is a modern Terminal User Interface for managing Homebrew packages on macOS. It provides an elegant and intuitive way to install, update, and manage your Homebrew packages without memorizing complex commands.

+
+
+

How do I install Bold Brew?

+
+ + +
+
+

You can install Bold Brew in two ways:

+
    +
  1. Using Homebrew: brew install Valkyrie00/homebrew-bbrew/bbrew
  2. +
  3. Downloading the latest release from our GitHub repository
  4. +
+
+
-
-
-

How do I install Bold Brew?

-
- + - -
-
-
-

You can install Bold Brew in two ways:

-
    -
  1. Using Homebrew: brew install Valkyrie00/homebrew-bbrew/bbrew
  2. -
  3. Downloading the latest release from our GitHub repository
  4. -
+
+
+

How do I update Bold Brew?

+
+ + +
+
+

Run brew upgrade bbrew to update the application to the latest version.

+
+
-
-
-

How do I update Bold Brew?

-
- + - -
-
-
-

Run brew upgrade bbrew to update the application to the latest version.

+
+
+

How do I remove Bold Brew?

+
+ + +
+
+

Use brew remove bbrew if you need to uninstall it from your system.

+
+
-
-
-

How do I remove Bold Brew?

-
- + - -
-
-
-

Use brew remove bbrew if you need to uninstall it from your system.

+
+
+

Does it work on Linux or Windows?

+
+ + +
+
+

Currently, Bold Brew is designed specifically for macOS since it depends on the Homebrew package manager, which is primarily for macOS.

+
+
-
-
-

Does it work on Linux or Windows?

-
- + - -
-
-
-

Currently, Bold Brew is designed specifically for macOS since it depends on the Homebrew package manager, which is primarily for macOS.

+
+
+

Where can I report issues or request features?

+
+ + +
- -
-
-

Where can I report issues or request features?

-
- + - -
-
-
-

Feel free to open an issue on our GitHub repository.

-
+
+

Feel free to open an issue on our GitHub repository.

-
-
+ + + +
+

© 2024 Bold Brew | GitHub

+
+ - - navigator.clipboard.writeText(cleanText).then(() => { - const copyText = button.querySelector('.copy-text'); - copyText.textContent = 'Copied!'; + - setTimeout(() => { - copyText.textContent = 'Copy'; - }, 2000); - }); -} - - \ No newline at end of file + \ No newline at end of file diff --git a/docs/manifest.json b/docs/manifest.json index ea792cb..b798ea9 100644 --- a/docs/manifest.json +++ b/docs/manifest.json @@ -27,11 +27,6 @@ "src": "assets/ico/bbrew-48.ico", "sizes": "48x48", "type": "image/x-icon" - }, - { - "src": "assets/ico/bbrew-180.ico", - "sizes": "180x180", - "type": "image/x-icon" } ], "categories": ["developer tools", "utilities"], diff --git a/docs/sitemap.xml b/docs/sitemap.xml index 2f51665..0fdeb32 100644 --- a/docs/sitemap.xml +++ b/docs/sitemap.xml @@ -1,53 +1,33 @@ - - https://bold-brew.com/ - 2024-03-29 - weekly - 1.0 - - - https://bold-brew.com/blog/ - 2024-03-29 - weekly - 0.8 - - - https://bold-brew.com/blog/essential-homebrew-commands.html - 2024-03-29 - monthly - 0.7 - - - https://bold-brew.com/blog/install-homebrew-macos.html - 2024-03-29 - monthly - 0.7 - - - https://bold-brew.com/blog/managing-homebrew-packages.html - 2024-03-29 - monthly - 0.7 - - - https://bold-brew.com/#features - monthly - 0.8 - - - https://bold-brew.com/#install - monthly - 0.8 - - - https://bold-brew.com/#about - monthly - 0.7 - - - https://bold-brew.com/#faq - monthly - 0.6 - + + https://bold-brew.com/ + 2025-03-30 + weekly + 1.0 + + + https://bold-brew.com/blog/ + 2025-03-30 + weekly + 0.9 + + + https://bold-brew.com/blog/essential-homebrew-commands.html + 2024-03-29 + monthly + 0.8 + + + https://bold-brew.com/blog/install-homebrew-macos.html + 2024-03-29 + monthly + 0.8 + + + https://bold-brew.com/blog/managing-homebrew-packages.html + 2024-03-29 + monthly + 0.8 + \ No newline at end of file diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..3c8cc92 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,596 @@ +{ + "name": "bold-brew-website", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "bold-brew-website", + "version": "1.0.0", + "dependencies": { + "ejs": "^3.1.10", + "ejs-layouts": "^0.0.1", + "front-matter": "^4.0.2", + "marked": "^12.0.2" + }, + "devDependencies": { + "nodemon": "^3.1.0" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/async": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz", + "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==", + "license": "MIT" + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "license": "MIT" + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "license": "MIT" + }, + "node_modules/debug": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", + "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/ejs": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz", + "integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==", + "license": "Apache-2.0", + "dependencies": { + "jake": "^10.8.5" + }, + "bin": { + "ejs": "bin/cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ejs-layouts": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/ejs-layouts/-/ejs-layouts-0.0.1.tgz", + "integrity": "sha512-Sz1UElfqpmpyC4wDc3I5dtRRc9EqZj937S41VFhynqEMwBZyenvboX7N2UyVPvKd9L8wd0OIRYaVmiWt1Rvxnw==" + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/filelist": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", + "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", + "license": "Apache-2.0", + "dependencies": { + "minimatch": "^5.0.1" + } + }, + "node_modules/filelist/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/filelist/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/front-matter": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/front-matter/-/front-matter-4.0.2.tgz", + "integrity": "sha512-I8ZuJ/qG92NWX8i5x1Y8qyj3vizhXS31OxjKDu3LKP+7/qBgfIKValiZIEwoVoJKUHlhWtYrktkxV1XsX+pPlg==", + "license": "MIT", + "dependencies": { + "js-yaml": "^3.13.1" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ignore-by-default": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", + "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==", + "dev": true, + "license": "ISC" + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "license": "MIT", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/jake": { + "version": "10.9.2", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.2.tgz", + "integrity": "sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==", + "license": "Apache-2.0", + "dependencies": { + "async": "^3.2.3", + "chalk": "^4.0.2", + "filelist": "^1.0.4", + "minimatch": "^3.1.2" + }, + "bin": { + "jake": "bin/cli.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "license": "MIT", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/marked": { + "version": "12.0.2", + "resolved": "https://registry.npmjs.org/marked/-/marked-12.0.2.tgz", + "integrity": "sha512-qXUm7e/YKFoqFPYPa3Ukg9xlI5cyAtGmyEIzMfW//m6kXwCy2Ps9DYf5ioijFKQ8qyuscrHoY04iJGctu2Kg0Q==", + "license": "MIT", + "bin": { + "marked": "bin/marked.js" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/nodemon": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.9.tgz", + "integrity": "sha512-hdr1oIb2p6ZSxu3PB2JWWYS7ZQ0qvaZsc3hK8DR8f02kRzc8rjYmxAIvdz+aYC+8F2IjNaB7HMcSDg8nQpJxyg==", + "dev": true, + "license": "MIT", + "dependencies": { + "chokidar": "^3.5.2", + "debug": "^4", + "ignore-by-default": "^1.0.1", + "minimatch": "^3.1.2", + "pstree.remy": "^1.1.8", + "semver": "^7.5.3", + "simple-update-notifier": "^2.0.0", + "supports-color": "^5.5.0", + "touch": "^3.1.0", + "undefsafe": "^2.0.5" + }, + "bin": { + "nodemon": "bin/nodemon.js" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/nodemon" + } + }, + "node_modules/nodemon/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/nodemon/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pstree.remy": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", + "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==", + "dev": true, + "license": "MIT" + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/semver": { + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", + "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/simple-update-notifier": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz", + "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "license": "BSD-3-Clause" + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/touch": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.1.tgz", + "integrity": "sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==", + "dev": true, + "license": "ISC", + "bin": { + "nodetouch": "bin/nodetouch.js" + } + }, + "node_modules/undefsafe": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", + "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==", + "dev": true, + "license": "MIT" + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..db65963 --- /dev/null +++ b/package.json @@ -0,0 +1,18 @@ +{ + "name": "bold-brew-website", + "version": "1.0.0", + "description": "Website for Bold Brew - A modern TUI for Homebrew", + "scripts": { + "build": "node build.js", + "dev": "nodemon build.js" + }, + "dependencies": { + "ejs": "^3.1.10", + "ejs-layouts": "^0.0.1", + "front-matter": "^4.0.2", + "marked": "^12.0.2" + }, + "devDependencies": { + "nodemon": "^3.1.0" + } +} diff --git a/site/content/blog/essential-homebrew-commands.md b/site/content/blog/essential-homebrew-commands.md new file mode 100644 index 0000000..7e63e0e --- /dev/null +++ b/site/content/blog/essential-homebrew-commands.md @@ -0,0 +1,127 @@ +--- +title: "10 Essential Homebrew Commands You Should Know" +date: "2024-03-29" +description: "Master the most important Homebrew commands for macOS package management. Learn how to install, update, and manage packages efficiently." +keywords: "Homebrew commands, brew commands, macOS package management, brew update, brew install, brew upgrade, brew search, essential commands" +--- + +# 10 Essential Homebrew Commands You Should Know + +Homebrew is the most popular package manager for macOS, and mastering its commands is essential for efficient package management. In this guide, we'll explore the 10 most important Homebrew commands that every macOS user should know. + +## 1. Install Packages + +The most basic and commonly used command is `brew install`: + +```bash +brew install package_name +``` + +You can also install multiple packages at once: + +```bash +brew install package1 package2 package3 +``` + +## 2. Update Homebrew + +Keep your Homebrew installation up to date: + +```bash +brew update +``` + +This command updates Homebrew's package database to the latest version. + +## 3. Upgrade Packages + +Upgrade all installed packages: + +```bash +brew upgrade +``` + +Or upgrade a specific package: + +```bash +brew upgrade package_name +``` + +## 4. Remove Packages + +Uninstall a package: + +```bash +brew uninstall package_name +``` + +## 5. Get Package Information + +View detailed information about a package: + +```bash +brew info package_name +``` + +## 6. List Installed Packages + +See all currently installed packages: + +```bash +brew list +``` + +## 7. Search for Packages + +Find packages in the Homebrew repository: + +```bash +brew search package_name +``` + +## 8. Check System Status + +Diagnose your Homebrew installation: + +```bash +brew doctor +``` + +## 9. Clean Up + +Remove old versions and clean the cache: + +```bash +brew cleanup +``` + +## 10. Manage Taps + +List tapped repositories: + +```bash +brew tap +``` + +Add a new tap: + +```bash +brew tap user/repo +``` + +## Pro Tips + +1. Combine update and upgrade: +```bash +brew update && brew upgrade +``` + +2. Use `brew doctor` regularly to maintain a healthy Homebrew installation. + +3. Consider using Bold Brew for a more intuitive package management experience. + +## Conclusion + +These commands form the foundation of Homebrew usage. While mastering the command line is important, tools like Bold Brew can make package management more intuitive and efficient. + +Remember to check the [Bold Brew documentation](https://bold-brew.com) for more tips and tricks on managing your Homebrew packages. \ No newline at end of file diff --git a/site/content/blog/install-homebrew-macos.md b/site/content/blog/install-homebrew-macos.md new file mode 100644 index 0000000..c8ba420 --- /dev/null +++ b/site/content/blog/install-homebrew-macos.md @@ -0,0 +1,94 @@ +--- +title: "How to Install and Configure Homebrew on macOS" +date: "2024-03-29" +description: "Learn how to install and configure Homebrew on macOS. A step-by-step guide to setting up the most popular package manager for macOS." +keywords: "Homebrew installation, macOS package manager, brew install, Homebrew setup, macOS development, package manager installation, brew configuration" +--- + +# How to Install and Configure Homebrew on macOS + +Homebrew is the most popular package manager for macOS, making it easy to install and manage software packages. In this guide, we'll walk you through the process of installing and configuring Homebrew on your Mac. + +## Prerequisites + +Before installing Homebrew, make sure you have: +- macOS 10.15 or later +- Command Line Tools for Xcode installed +- A stable internet connection + +## Installation Steps + +1. First, install the Command Line Tools for Xcode: +```bash +xcode-select --install +``` + +2. Install Homebrew by running this command in Terminal: +```bash +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" +``` + +3. Add Homebrew to your PATH (if prompted): +```bash +echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> ~/.zshrc +eval "$(/opt/homebrew/bin/brew shellenv)" +``` + +## Verify Installation + +Check if Homebrew is installed correctly: +```bash +brew --version +``` + +## Basic Configuration + +1. Update Homebrew: +```bash +brew update +``` + +2. Upgrade all packages: +```bash +brew upgrade +``` + +3. Check system status: +```bash +brew doctor +``` + +## Common Issues and Solutions + +1. **Permission Issues** + - If you encounter permission errors, run: + ```bash + sudo chown -R $(whoami) /opt/homebrew + ``` + +2. **Slow Downloads** + - Consider using a mirror: + ```bash + export HOMEBREW_BREW_GIT_REMOTE="https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git" + export HOMEBREW_CORE_GIT_REMOTE="https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git" + ``` + +3. **Network Issues** + - Check your internet connection + - Try using a VPN if needed + +## Next Steps + +Now that you have Homebrew installed, you can: +1. Install packages using `brew install` +2. Search for packages using `brew search` +3. Update packages using `brew upgrade` +4. Remove packages using `brew uninstall` + +For a more intuitive package management experience, consider using [Bold Brew](https://bold-brew.com), a modern Terminal User Interface (TUI) for Homebrew. + +## Conclusion + +Homebrew is an essential tool for macOS users, making it easy to install and manage software packages. With proper installation and configuration, you'll have a powerful package manager at your disposal. + +Remember to keep Homebrew updated and run `brew doctor` regularly to maintain a healthy installation. \ No newline at end of file diff --git a/site/content/blog/managing-homebrew-packages.md b/site/content/blog/managing-homebrew-packages.md new file mode 100644 index 0000000..66770ff --- /dev/null +++ b/site/content/blog/managing-homebrew-packages.md @@ -0,0 +1,100 @@ +--- +title: "Managing Homebrew Packages on macOS with Bold Brew" +date: "2024-03-29" +description: "Learn how to efficiently manage Homebrew packages on macOS using Bold Brew. Discover best practices, tips, and tricks for package management." +keywords: "Homebrew, package management, macOS, Bold Brew, bbrew, terminal, package manager, TUI, terminal user interface, brew packages" +--- + +# Managing Homebrew Packages on macOS with Bold Brew + +Managing Homebrew packages through the command line can be challenging, especially when dealing with multiple packages or complex dependencies. Bold Brew provides a modern Terminal User Interface (TUI) that makes package management more intuitive and efficient. + +## Why Use Bold Brew? + +Bold Brew offers several advantages over traditional command-line package management: + +1. **Visual Interface** + - Easy-to-read package lists + - Clear dependency visualization + - Intuitive navigation + +2. **Efficient Workflow** + - Quick package search + - One-click installation/removal + - Batch operations + +3. **Better Organization** + - Group packages by category + - Track package status + - Monitor system health + +## Installation + +Install Bold Brew using Homebrew: + +```bash +brew install Valkyrie00/homebrew-bbrew/bbrew +``` + +## Key Features + +### 1. Package Search +- Real-time search as you type +- Filter by name, description, or category +- View package details before installation + +### 2. Package Management +- Install/remove packages with a single keypress +- Update packages individually or in bulk +- View package dependencies + +### 3. System Monitoring +- Check Homebrew system status +- Monitor disk usage +- View installation logs + +### 4. User Interface +- Keyboard-driven navigation +- Color-coded status indicators +- Contextual help + +## Best Practices + +1. **Regular Updates** + - Keep packages up to date + - Monitor for outdated packages + - Check system health regularly + +2. **Package Organization** + - Group related packages + - Track package purposes + - Maintain a clean system + +3. **Dependency Management** + - Review dependencies before installation + - Clean up orphaned packages + - Monitor disk usage + +## Tips and Tricks + +1. **Keyboard Shortcuts** + - `?` - Show help + - `q` - Quit + - `space` - Select/deselect + - `enter` - Execute action + +2. **Search Tips** + - Use partial matches + - Filter by category + - Sort by various criteria + +3. **Maintenance** + - Regular cleanup + - System health checks + - Package updates + +## Conclusion + +Bold Brew transforms Homebrew package management from a command-line chore into an intuitive, visual experience. Whether you're a casual user or a power user, Bold Brew can help you manage your Homebrew packages more efficiently. + +For more information, visit the [Bold Brew documentation](https://bold-brew.com) or check out our other guides on Homebrew management. \ No newline at end of file diff --git a/site/templates/blog/index.ejs b/site/templates/blog/index.ejs new file mode 100644 index 0000000..db8aeb1 --- /dev/null +++ b/site/templates/blog/index.ejs @@ -0,0 +1,61 @@ +
+ <% if (locals.breadcrumb) { %> + <%- include('../partials/breadcrumb') %> + <% } %> + +
+

Bold Brew Blog

+

Tips, tutorials, and guides for managing Homebrew packages on macOS

+
+ +
+
+
+ <% posts.forEach(post => { %> + + <% }); %> +
+
+ + +
+
\ No newline at end of file diff --git a/site/templates/blog/post.ejs b/site/templates/blog/post.ejs new file mode 100644 index 0000000..4f8c7e7 --- /dev/null +++ b/site/templates/blog/post.ejs @@ -0,0 +1,28 @@ +
+ <% if (locals.breadcrumb) { %> + <%- include('../partials/breadcrumb') %> + <% } %> + +
+
+

<%= title %>

+
+ <%= date %> + By Valkyrie00 +
+
+ +
+ <%- content %> +
+ + +
+
\ No newline at end of file diff --git a/site/templates/index.ejs b/site/templates/index.ejs new file mode 100644 index 0000000..0212710 --- /dev/null +++ b/site/templates/index.ejs @@ -0,0 +1,309 @@ +
+
+
+
+
+ Bold Brew Logo +

Bold Brew

+

bbrew

+

A fast and practical TUI that simplifies your Homebrew package management on macOS, making installations and updates effortless

+
+ Version + License + Build Status + Downloads +
+ +
+
+
+ +
+
+

Installation

+

Get started with Bold Brew in just a few simple commands

+
+
+
+
+
+
1
+

Install Bold Brew

+
+
+
> brew install Valkyrie00/homebrew-bbrew/bbrew
+ +
+

This installs Bold Brew directly from the repository via Homebrew

+
+ +
+
+
2
+

Run Bold Brew

+
+
+
> bbrew
+ +
+
+
+ +
+
+ OR +
+

Download the latest version directly from GitHub

+ +
+
+
+
+
+ +
+
+

Screenshots

+

Explore the Bold Brew interface and its features

+ +
+
+
+ Main Dashboard showing package management interface +
+

Main Dashboard

+
+
+
+
+
+ Installed packages management view +
+

Handle Installed Packages

+
+
+
+
+
+ Package search interface +
+

Search for Packages

+
+
+
+
+
+
+ +
+
+

Features

+
+
+
+ +

Search Packages

+

Easily search and find Homebrew packages with our intuitive interface.

+
+
+
+
+ +

Install & Update

+

Install, update, and manage packages with just a few clicks.

+
+
+
+
+ +

System Management

+

Monitor system status and manage Homebrew services efficiently.

+
+
+
+
+
+ +
+
+

Latest Articles

+
+ <% posts.slice(0, 3).forEach(post => { %> +
+
+ +

<%= post.title %>

+

<%= post.excerpt %>

+ Read more → +
+
+ <% }); %> +
+ +
+
+ +
+
+

Manage Homebrew Packages on macOS with Bold Brew

+
+
+

Bold Brew transforms the way developers manage Homebrew packages on macOS with its elegant Terminal User Interface. Stop struggling with complex command-line syntax and enjoy a streamlined package management experience.

+ +

Why macOS Users Choose Bold Brew

+

Managing your Homebrew ecosystem has never been easier. Bold Brew provides real-time visual feedback for installations, updates, and package removals—all while maintaining the speed and efficiency you expect from terminal-based applications.

+ +

Key Benefits for macOS Developers

+
    +
  • Faster package discovery with intuitive search functionality
  • +
  • Simplified dependency management with visual relationship mapping
  • +
  • Streamlined updates for all installed Homebrew packages
  • +
  • One-click installations without memorizing complex commands
  • +
+ +

Built specifically for macOS users who rely on Homebrew, Bold Brew integrates perfectly with your development workflow while reducing cognitive load and increasing productivity.

+
+
+
+
+ +
+
+

About Bold Brew for macOS

+
+
+

The modern Homebrew package manager that macOS developers have been waiting for

+ +

The Bold Brew Advantage

+

Bold Brew was designed from the ground up to address the limitations of traditional Homebrew management. By providing a Terminal User Interface (TUI), Bold Brew combines the efficiency of command-line operations with intuitive visual feedback.

+ +

Homebrew Integration

+

As a dedicated Homebrew TUI manager for macOS, Bold Brew seamlessly integrates with your existing Homebrew installation. All operations—from searching the formula repository to managing casks—are visualized through an elegant interface while preserving the speed and reliability of Homebrew's core functionality.

+ +
+

System Requirements

+
    +
  • macOS 10.15 Catalina or newer
  • +
  • Homebrew installation
  • +
  • Terminal with true color support
  • +
+
+ +

Whether you're a seasoned developer or new to macOS package management, Bold Brew streamlines your workflow and makes Homebrew more accessible than ever before.

+
+
+
+
+ +
+
+

FAQ

+

Frequently asked questions about Bold Brew

+
+
+
+
+
+

What is Bold Brew?

+
+ + + +
+
+
+

Bold Brew (bbrew) is a modern Terminal User Interface for managing Homebrew packages on macOS. It provides an elegant and intuitive way to install, update, and manage your Homebrew packages without memorizing complex commands.

+
+
+ +
+
+

How do I install Bold Brew?

+
+ + + +
+
+
+

You can install Bold Brew in two ways:

+
    +
  1. Using Homebrew: brew install Valkyrie00/homebrew-bbrew/bbrew
  2. +
  3. Downloading the latest release from our GitHub repository
  4. +
+
+
+ +
+
+

How do I update Bold Brew?

+
+ + + +
+
+
+

Run brew upgrade bbrew to update the application to the latest version.

+
+
+ +
+
+

How do I remove Bold Brew?

+
+ + + +
+
+
+

Use brew remove bbrew if you need to uninstall it from your system.

+
+
+ +
+
+

Does it work on Linux or Windows?

+
+ + + +
+
+
+

Currently, Bold Brew is designed specifically for macOS since it depends on the Homebrew package manager, which is primarily for macOS.

+
+
+ +
+
+

Where can I report issues or request features?

+
+ + + +
+
+
+

Feel free to open an issue on our GitHub repository.

+
+
+
+
+
+
+
+
\ No newline at end of file diff --git a/site/templates/layout.ejs b/site/templates/layout.ejs new file mode 100644 index 0000000..6ff242a --- /dev/null +++ b/site/templates/layout.ejs @@ -0,0 +1,125 @@ + + + + + + <%= title %> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <%- include('partials/header') %> + + <%- content %> + + <%- include('partials/footer') %> + + + + + + + + \ No newline at end of file diff --git a/site/templates/partials/breadcrumb.ejs b/site/templates/partials/breadcrumb.ejs new file mode 100644 index 0000000..1bc0645 --- /dev/null +++ b/site/templates/partials/breadcrumb.ejs @@ -0,0 +1,15 @@ +
+ +
\ No newline at end of file diff --git a/site/templates/partials/footer.ejs b/site/templates/partials/footer.ejs new file mode 100644 index 0000000..95cef1d --- /dev/null +++ b/site/templates/partials/footer.ejs @@ -0,0 +1,5 @@ + \ No newline at end of file diff --git a/site/templates/partials/header.ejs b/site/templates/partials/header.ejs new file mode 100644 index 0000000..659f0d6 --- /dev/null +++ b/site/templates/partials/header.ejs @@ -0,0 +1,32 @@ +
+ +
\ No newline at end of file