Get your Concept dashboard up and running in just 5 minutes!
Before you begin, ensure you have the following installed:
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 higher
Option A: Download
Option B: Clone from Git
git clone https://github.com/yourusername/concept-modern.git
cd concept-modern
Run the following command in your project directory:
npm install
This will install all required packages including Bootstrap, Vite, and other dependencies.
npm run dev
You 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
/pages/ui-elements/general.htmlsrc/pages/misc/blank-page.htmlconcept-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 build
Make sure you're in the correct directory:
pwd
# Should show: /path/to/concept-modern
Now that you have Concept running:
docs/ folderHappy coding! 🚀