Essential Features
Master these DAMP features for maximum productivity:
- Visual Management - Learn the DAMP interface
- SSL Certificates - Understand HTTPS development
- Xdebug Setup - Configure debugging
- Custom Domains - Create memorable local URLs
Get your first DAMP project up and running in under 5 minutes. This guide assumes you have DAMP already installed and are familiar with web development concepts.
Open DAMP
Launch DAMP from your applications menu or system tray.
Create a new project
Click the “New Project” button in the DAMP dashboard.
Choose project type
Select your project template:
Choose the type of site you want to create.
Configure project
Fill in the project details:
my-first-app
my-first-app.local
(auto-generated)8.2
(for PHP projects)Create project
Click “Create Project” and wait for DAMP to:
Once creation is complete, your project is immediately available:
https://my-first-app.local
For the best development experience, open your project in VS Code with DevContainer support:
Click “Open in VS Code”
In the DAMP project dashboard, click the “Open in VS Code” button.
Install DevContainer extension (if prompted)
VS Code will prompt you to install the DevContainer extension if not already installed.
Reopen in container
VS Code will ask to “Reopen in Container” - click “Reopen in Container”.
Start coding
You now have a fully configured development environment with:
Let’s verify everything is working correctly:
If you created a Laravel project:
View the welcome page
Navigate to https://my-first-app.local
in your browser. You should see the Laravel welcome page.
Check the database
Laravel should connect to MySQL automatically. Run a migration:
php artisan migrate
For other project types:
Check web access
Visit your project URL and verify the web server is responding.
Test file changes
Edit a file and verify changes appear immediately (live reload enabled).
Database connection
Test database connectivity using the provided credentials.
Your development environment is ready! Here’s what to explore next:
Essential Features
Master these DAMP features for maximum productivity:
Once you’re comfortable with the basics:
If something isn’t working:
For detailed troubleshooting, see our troubleshooting guide.
Congratulations! 🎉 You’ve successfully created your first DAMP project. You now have a professional development environment with SSL, database access, email testing, and debugging capabilities - all configured automatically.
Ready to dive deeper? Explore our comprehensive guides to master DAMP’s powerful features.