Get your Concept dashboard up and running in just 5 minutes!
Before you begin, ensure you have the following installed:
- Node.js (version 18 or higher) - Download Node.js
- npm (comes with Node.js) or yarn
- A code editor (we recommend VS Code)
- A modern web browser
To check if you have Node.js installed, run:
node --version
# Should output: v18.x.x or higher
npm --version
# Should output: 9.x.x or higherOption A: Download
- Download the Concept template zip file
- Extract it to your desired location
- Open the folder in your terminal
Option B: Clone from Git
git clone https://github.com/yourusername/concept-modern.git
cd concept-modernRun the following command in your project directory:
npm installThis will install all required packages including Bootstrap, Vite, and other dependencies.
npm run devYou should see output like:
VITE v7.0.6 ready in 325 ms
➜ Local: http://localhost:3000/
➜ Network: http://192.168.1.100:3000/
➜ press h + enter to show help
Navigate to http://localhost:3000 in your browser.
🎉 Congratulations! You should now see the Concept dashboard running locally.
# Start dev server with hot reload
npm run dev
# Start on a different port
npm run dev -- --port 3001# Create optimized production build
npm run build
# Preview production build locally
npm run preview# Clean build directory
npm run clean
# Check for dependency updates
npm outdated
# Update dependencies
npm update- Click through different dashboard variants
- Try the sidebar navigation
- Test responsive behavior
- Visit
/pages/ui-elements/general.html - Explore form elements
- View table examples
- Open the email client
- Test the chat interface
- Browse the calendar
- Open
src/pages/misc/blank-page.html - Add your content
- Save and see instant updates
concept-modern/
├── src/
│ ├── index.html # Main dashboard
│ ├── pages/ # All HTML pages
│ ├── js/ # JavaScript files
│ ├── scss/ # Styles
│ └── assets/ # Images & fonts
├── package.json # Dependencies
└── vite.config.js # Build config
# Use a different port
npm run dev -- --port 3001# Clear npm cache
npm cache clean --force
# Delete node_modules and reinstall
rm -rf node_modules package-lock.json
npm install# Clear dist folder
npm run clean
# Rebuild
npm run buildMake sure you're in the correct directory:
pwd
# Should show: /path/to/concept-modernNow that you have Concept running:
- Read the Installation Guide - For detailed setup options
- Understand File Structure - Learn where everything is
- Start Customizing - Make it yours
- Add New Pages - Extend functionality
- 📚 Check the full documentation in the
docs/folder - 🐛 Report issues on GitHub
- 💬 Join our community forum
- 📧 Email support for license holders
Happy coding! 🚀