How to Install Smashing on macOS
Smashing is an open-source web framework for building dashboards. Here's a step-by-step guide on how to install Smashing on macOS.
Prerequisites
- macOS version 10.8 Mountain Lion or higher
- Ruby version 2.5.0 or higher installed
Installation
Open your terminal.
Install the bundler gem by running this command:
gem install bundlerCreate a new directory for your Smashing project:
mkdir my_dashboardMove to the new directory:
cd my_dashboardInitialize a new Smashing project with the following command:
smashing new smashing-dashboardMove to the newly created directory:
cd smashing-dashboardInstall the necessary dependencies by running:
bundle installStart the server by running:
smashing startNavigate to
http://localhost:3030on your web browser to view your Smashing dashboard.
Congratulations! You have successfully installed Smashing on macOS.
Additional Notes
- You can edit your dashboard by modifying the files in the
smashing-dashboarddirectory. - To stop the server, press
Ctrl + Cin your terminal.