-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
executable file
·28 lines (22 loc) · 1.16 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php include('partials/header.php'); ?>
<div class="container" style="height: 100vh; display: flex; flex-flow: column nowrap; justify-content: center;">
<test-component class="text-center"></test-component>
<h3>Getting started</h3>
<p>Change the <code>browserSync('vue—boilerplate.test')</code> in <code>webpack.mix.js</code></p>
<p>
Read the mf manuals
<ul class="list">
<li>- <a href="https://laravel.com/docs/5.4/mix#running-mix" target="_blank">Laravel Mix</a></li>
<li>- <a href="https://vuejs.org/" target="_blank">Vue.js</a></li>
<li>- <a href="https://github.com/axios/axios" target="_blank">Axios.js</a></li>
<li>- <a href="https://github.com/typicode/json-server" target="_blank">Json-server</a></li>
</ul>
</p>
<h4>Optional</h4>
<p>
Use <code>npm run watch-json</code> to start the json server<br>
Edit <code>/api/db.js</code> to create new endpoints or use <code>/api/fakeList.js</code> as a reference.
</p>
<a href="http://localhost:3000/fakeList" target="_blank">http://localhost:3000/fakeList</a>
</div>
<?php include('partials/footer.php'); ?>