Skip to content

Commit b5a56d3

Browse files
committed
updated
1 parent 6d6e2d6 commit b5a56d3

File tree

1 file changed

+51
-0
lines changed

1 file changed

+51
-0
lines changed

docs/guides.html

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -374,6 +374,57 @@ <h3>Configure Services</h3>
374374
</div>
375375
</section>
376376

377+
<!-- ============ Guide: Project Details ============ -->
378+
<section class="section" id="guide-project-details">
379+
<div class="container" style="max-width:900px;">
380+
<div class="section-header animate-in">
381+
<h2>🛠️ Managing a Project</h2>
382+
<p>Explore the features inside the Project Details page.</p>
383+
</div>
384+
385+
<div class="animate-in">
386+
<p style="color:var(--text-secondary); line-height:1.8; margin-bottom:var(--space-lg);">
387+
When you click on a project card from the Dashboard or Projects list, you'll enter the <strong style="color:var(--text-primary);">Project Details</strong> page. This page gives you granular control over the project through several tabs:
388+
</p>
389+
390+
<!-- Overview Tab -->
391+
<h3 style="margin-bottom:var(--space-sm);">1. Overview</h3>
392+
<p style="color:var(--text-secondary); line-height:1.8; margin-bottom:var(--space-md);">
393+
The central command center for your project:
394+
</p>
395+
<ul style="list-style:none; padding:0; margin-bottom:var(--space-lg); color:var(--text-secondary);">
396+
<li style="padding:4px 0;"><strong>Web Server & PHP/Node Version:</strong> Change the assigned framework versions or switch between Nginx/Apache on the fly.</li>
397+
<li style="padding:4px 0;"><strong>Services:</strong> Toggle specific databases (MySQL, PostgreSQL, MongoDB, etc.) or caching layers (Redis, Memcached) exclusively for this project.</li>
398+
<li style="padding:4px 0;"><strong>Domains & Network:</strong> Add custom domain aliases, change the document root folder, or enable <code>Share on Local Network</code> to test your app from your phone.</li>
399+
</ul>
400+
401+
<!-- Terminal Tab -->
402+
<h3 style="margin-bottom:var(--space-sm);">2. Terminal</h3>
403+
<p style="color:var(--text-secondary); line-height:1.8; margin-bottom:var(--space-lg);">
404+
A fully featured, built-in command line interface that automatically opens in your project's folder. Run <code>npm install</code>, <code>composer update</code>, or <code>php artisan</code> commands directly inside DevBox Pro without opening a separate terminal window.
405+
</p>
406+
407+
<!-- Logs Tab -->
408+
<h3 style="margin-bottom:var(--space-sm);">3. Logs</h3>
409+
<p style="color:var(--text-secondary); line-height:1.8; margin-bottom:var(--space-lg);">
410+
View real-time, consolidated logs for the project. Includes access logs, error logs, and output from any running Node.js process. You can toggle auto-refresh to watch logs stream in live as you develop.
411+
</p>
412+
413+
<!-- Workers Tab -->
414+
<h3 style="margin-bottom:var(--space-sm);">4. Workers</h3>
415+
<p style="color:var(--text-secondary); line-height:1.8; margin-bottom:var(--space-lg);">
416+
Manage background processes using the built-in Supervisor integration. Add persistent background workers like Laravel Queue workers, Horizon, or any custom long-running scripts (e.g., <code>php artisan queue:work</code>). Set them to auto-restart if they crash.
417+
</p>
418+
419+
<!-- Environment Tab -->
420+
<h3 style="margin-bottom:var(--space-sm);">5. Environment</h3>
421+
<p style="color:var(--text-secondary); line-height:1.8; margin-bottom:var(--space-lg);">
422+
A built-in editor for your project's <code>.env</code> file. Easily update connection strings, api keys, and environment variables without needing to open your code editor.
423+
</p>
424+
</div>
425+
</div>
426+
</section>
427+
377428
<!-- ============ Guide: Settings ============ -->
378429
<section class="section" id="guide-settings">
379430
<div class="container" style="max-width:900px;">

0 commit comments

Comments
 (0)