You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/contributing/index.html
+6-5Lines changed: 6 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -346,16 +346,17 @@ <h2 id="i-want-to-update-the-documentation-site">I want to update the Documentat
346
346
<p>Laradock uses <ahref="https://gohugo.io/">Hugo</a> as website generator tool, with the <ahref="http://themes.gohugo.io/theme/material-docs/">Material Docs theme</a>. You might need to check their docs quickly.</p>
347
347
348
348
<ol>
349
-
<li>Install <ahref="https://gohugo.io/">Hugo</a> on your machine (easy steps).</li>
350
-
<li>Open the <code>DOCUMENTATION/_settings/content</code> and search for the markdown file you want to edit (every folder is a section in the menu).</li>
351
-
<li>After done editing, run the this command <code>hugo</code> to generate the updated site inside the <code>docs</code> folder (It’s recommended to delete all files form the <code>/docs</code> folder, except the <code>CNAME</code> file, before running the <code>hugo</code> command).</li>
349
+
<li>Install <ahref="https://gohugo.io/">Hugo</a> on your machine (easy thing).</li>
350
+
<li>Open the <code>DOCUMENTATION/_settings/content</code> and search for the markdown file you want to edit (every folder represents a section in the menu).</li>
351
+
<li>Delete the <code>/docs</code> folder from the root.</li>
352
+
<li>When you finish editing, run the <code>hugo</code> command to generate the HTML docs (in the <code>/docs</code>).</li>
352
353
</ol>
353
354
354
-
<h4id="to-host-the-website-locally">To Host the website locally</h4>
355
+
<h3id="to-host-the-website-locally">To Host the website locally</h3>
355
356
356
357
<p>Go to <code>DOCUMENTATION/_settings</code> in your terminal and run <code>hugo serve</code> to host the website locally.</p>
357
358
358
-
<h4id="edit-the-sidebar">Edit the sidebar</h4>
359
+
<h3id="edit-the-sidebar">Edit the sidebar</h3>
359
360
360
361
<p>To add a new section to the sidebar or edit existing one, you need to edit this file <code>DOCUMENTATION/_settings/config.toml</code>.</p>
Copy file name to clipboardExpand all lines: docs/contributing/index.xml
+6-5Lines changed: 6 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -49,16 +49,17 @@ features, by not reporting duplicate issues.</em></p>
49
49
<p>Laradock uses <a href="https://gohugo.io/">Hugo</a> as website generator tool, with the <a href="http://themes.gohugo.io/theme/material-docs/">Material Docs theme</a>. You might need to check their docs quickly.</p>
50
50
51
51
<ol>
52
-
<li>Install <a href="https://gohugo.io/">Hugo</a> on your machine (easy steps).</li>
53
-
<li>Open the <code>DOCUMENTATION/_settings/content</code> and search for the markdown file you want to edit (every folder is a section in the menu).</li>
54
-
<li>After done editing, run the this command <code>hugo</code> to generate the updated site inside the <code>docs</code> folder (It&rsquo;s recommended to delete all files form the <code>/docs</code> folder, except the <code>CNAME</code> file, before running the <code>hugo</code> command).</li>
52
+
<li>Install <a href="https://gohugo.io/">Hugo</a> on your machine (easy thing).</li>
53
+
<li>Open the <code>DOCUMENTATION/_settings/content</code> and search for the markdown file you want to edit (every folder represents a section in the menu).</li>
54
+
<li>Delete the <code>/docs</code> folder from the root.</li>
55
+
<li>When you finish editing, run the <code>hugo</code> command to generate the HTML docs (in the <code>/docs</code>).</li>
55
56
</ol>
56
57
57
-
<h4 id="to-host-the-website-locally">To Host the website locally</h4>
58
+
<h3 id="to-host-the-website-locally">To Host the website locally</h3>
58
59
59
60
<p>Go to <code>DOCUMENTATION/_settings</code> in your terminal and run <code>hugo serve</code> to host the website locally.</p>
60
61
61
-
<h4 id="edit-the-sidebar">Edit the sidebar</h4>
62
+
<h3 id="edit-the-sidebar">Edit the sidebar</h3>
62
63
63
64
<p>To add a new section to the sidebar or edit existing one, you need to edit this file <code>DOCUMENTATION/_settings/config.toml</code>.</p>
Copy file name to clipboardExpand all lines: docs/getting-started/index.html
+9-8Lines changed: 9 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -365,12 +365,14 @@ <h3 id="a-1-already-have-a-php-project">A.1) Already have a PHP project:</h3>
365
365
366
366
<p>Your folder structure should look like this:</p>
367
367
368
-
<pre><code>- project1
369
-
- laradock
370
-
- project2
371
-
- laradock
368
+
<pre><code>- project-A
369
+
- laradock-A
370
+
- project-B
371
+
- laradock-B
372
372
</code></pre>
373
373
374
+
<p>(It’s important to rename the folders differently in each project)</p>
375
+
374
376
<p><aname="A2"></a></p>
375
377
376
378
<h3id="a-2-don-t-have-a-php-project-yet">A.2) Don’t have a PHP project yet:</h3>
@@ -386,12 +388,11 @@ <h3 id="a-2-don-t-have-a-php-project-yet">A.2) Don’t have a PHP project ye
386
388
387
389
<p>Your folder structure should look like this:</p>
388
390
389
-
<pre><code>- projects
390
-
- laradock
391
-
- myProject
391
+
<pre><code>- laradock
392
+
- Project-Z
392
393
</code></pre>
393
394
394
-
<p>2 - Edit the <code>docker-compose.yml</code> file to map to your project directory once you have it (example: <code>- ../myProject:/var/www</code>).</p>
395
+
<p>2 - Edit the <code>docker-compose.yml</code> file to map to your project directory once you have it (example: <code>- ../Project-Z:/var/www</code>).</p>
395
396
396
397
<p>3 - Stop and re-run your docker-compose command for the changes to take place.</p>
<h3 id="a-2-don-t-have-a-php-project-yet">A.2) Don&rsquo;t have a PHP project yet:</h3>
@@ -89,12 +91,11 @@
89
91
90
92
<p>Your folder structure should look like this:</p>
91
93
92
-
<pre><code>- projects
93
-
- laradock
94
-
- myProject
94
+
<pre><code>- laradock
95
+
- Project-Z
95
96
</code></pre>
96
97
97
-
<p>2 - Edit the <code>docker-compose.yml</code> file to map to your project directory once you have it (example: <code>- ../myProject:/var/www</code>).</p>
98
+
<p>2 - Edit the <code>docker-compose.yml</code> file to map to your project directory once you have it (example: <code>- ../Project-Z:/var/www</code>).</p>
98
99
99
100
<p>3 - Stop and re-run your docker-compose command for the changes to take place.</p>
Copy file name to clipboardExpand all lines: docs/index.html
+15-13Lines changed: 15 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -563,12 +563,14 @@ <h3 id="a-1-already-have-a-php-project">A.1) Already have a PHP project:</h3>
563
563
564
564
<p>Your folder structure should look like this:</p>
565
565
566
-
<pre><code>- project1
567
-
- laradock
568
-
- project2
569
-
- laradock
566
+
<pre><code>- project-A
567
+
- laradock-A
568
+
- project-B
569
+
- laradock-B
570
570
</code></pre>
571
571
572
+
<p>(It’s important to rename the folders differently in each project)</p>
573
+
572
574
<p><aname="A2"></a></p>
573
575
574
576
<h3id="a-2-don-t-have-a-php-project-yet">A.2) Don’t have a PHP project yet:</h3>
@@ -584,12 +586,11 @@ <h3 id="a-2-don-t-have-a-php-project-yet">A.2) Don’t have a PHP project ye
584
586
585
587
<p>Your folder structure should look like this:</p>
586
588
587
-
<pre><code>- projects
588
-
- laradock
589
-
- myProject
589
+
<pre><code>- laradock
590
+
- Project-Z
590
591
</code></pre>
591
592
592
-
<p>2 - Edit the <code>docker-compose.yml</code> file to map to your project directory once you have it (example: <code>- ../myProject:/var/www</code>).</p>
593
+
<p>2 - Edit the <code>docker-compose.yml</code> file to map to your project directory once you have it (example: <code>- ../Project-Z:/var/www</code>).</p>
593
594
594
595
<p>3 - Stop and re-run your docker-compose command for the changes to take place.</p>
595
596
@@ -1965,16 +1966,17 @@ <h2 id="i-want-to-update-the-documentation-site">I want to update the Documentat
1965
1966
<p>Laradock uses <ahref="https://gohugo.io/">Hugo</a> as website generator tool, with the <ahref="http://themes.gohugo.io/theme/material-docs/">Material Docs theme</a>. You might need to check their docs quickly.</p>
1966
1967
1967
1968
<ol>
1968
-
<li>Install <ahref="https://gohugo.io/">Hugo</a> on your machine (easy steps).</li>
1969
-
<li>Open the <code>DOCUMENTATION/_settings/content</code> and search for the markdown file you want to edit (every folder is a section in the menu).</li>
1970
-
<li>After done editing, run the this command <code>hugo</code> to generate the updated site inside the <code>docs</code> folder (It’s recommended to delete all files form the <code>/docs</code> folder, except the <code>CNAME</code> file, before running the <code>hugo</code> command).</li>
1969
+
<li>Install <ahref="https://gohugo.io/">Hugo</a> on your machine (easy thing).</li>
1970
+
<li>Open the <code>DOCUMENTATION/_settings/content</code> and search for the markdown file you want to edit (every folder represents a section in the menu).</li>
1971
+
<li>Delete the <code>/docs</code> folder from the root.</li>
1972
+
<li>When you finish editing, run the <code>hugo</code> command to generate the HTML docs (in the <code>/docs</code>).</li>
1971
1973
</ol>
1972
1974
1973
-
<h4id="to-host-the-website-locally">To Host the website locally</h4>
1975
+
<h3id="to-host-the-website-locally">To Host the website locally</h3>
1974
1976
1975
1977
<p>Go to <code>DOCUMENTATION/_settings</code> in your terminal and run <code>hugo serve</code> to host the website locally.</p>
1976
1978
1977
-
<h4id="edit-the-sidebar">Edit the sidebar</h4>
1979
+
<h3id="edit-the-sidebar">Edit the sidebar</h3>
1978
1980
1979
1981
<p>To add a new section to the sidebar or edit existing one, you need to edit this file <code>DOCUMENTATION/_settings/config.toml</code>.</p>
<h3 id="a-2-don-t-have-a-php-project-yet">A.2) Don&rsquo;t have a PHP project yet:</h3>
@@ -291,12 +293,11 @@ QUEUE_HOST=beanstalkd
291
293
292
294
<p>Your folder structure should look like this:</p>
293
295
294
-
<pre><code>- projects
295
-
- laradock
296
-
- myProject
296
+
<pre><code>- laradock
297
+
- Project-Z
297
298
</code></pre>
298
299
299
-
<p>2 - Edit the <code>docker-compose.yml</code> file to map to your project directory once you have it (example: <code>- ../myProject:/var/www</code>).</p>
300
+
<p>2 - Edit the <code>docker-compose.yml</code> file to map to your project directory once you have it (example: <code>- ../Project-Z:/var/www</code>).</p>
300
301
301
302
<p>3 - Stop and re-run your docker-compose command for the changes to take place.</p>
302
303
@@ -1692,16 +1693,17 @@ features, by not reporting duplicate issues.</em></p>
1692
1693
<p>Laradock uses <a href="https://gohugo.io/">Hugo</a> as website generator tool, with the <a href="http://themes.gohugo.io/theme/material-docs/">Material Docs theme</a>. You might need to check their docs quickly.</p>
1693
1694
1694
1695
<ol>
1695
-
<li>Install <a href="https://gohugo.io/">Hugo</a> on your machine (easy steps).</li>
1696
-
<li>Open the <code>DOCUMENTATION/_settings/content</code> and search for the markdown file you want to edit (every folder is a section in the menu).</li>
1697
-
<li>After done editing, run the this command <code>hugo</code> to generate the updated site inside the <code>docs</code> folder (It&rsquo;s recommended to delete all files form the <code>/docs</code> folder, except the <code>CNAME</code> file, before running the <code>hugo</code> command).</li>
1696
+
<li>Install <a href="https://gohugo.io/">Hugo</a> on your machine (easy thing).</li>
1697
+
<li>Open the <code>DOCUMENTATION/_settings/content</code> and search for the markdown file you want to edit (every folder represents a section in the menu).</li>
1698
+
<li>Delete the <code>/docs</code> folder from the root.</li>
1699
+
<li>When you finish editing, run the <code>hugo</code> command to generate the HTML docs (in the <code>/docs</code>).</li>
1698
1700
</ol>
1699
1701
1700
-
<h4 id="to-host-the-website-locally">To Host the website locally</h4>
1702
+
<h3 id="to-host-the-website-locally">To Host the website locally</h3>
1701
1703
1702
1704
<p>Go to <code>DOCUMENTATION/_settings</code> in your terminal and run <code>hugo serve</code> to host the website locally.</p>
1703
1705
1704
-
<h4 id="edit-the-sidebar">Edit the sidebar</h4>
1706
+
<h3 id="edit-the-sidebar">Edit the sidebar</h3>
1705
1707
1706
1708
<p>To add a new section to the sidebar or edit existing one, you need to edit this file <code>DOCUMENTATION/_settings/config.toml</code>.</p>
0 commit comments