Compare commits
15 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
0f8346968b | 9 years ago |
|
|
9c7cec81a8 | 9 years ago |
|
|
85ddf3b2c1 | 10 years ago |
|
|
fc0f7ace95 | 10 years ago |
|
|
a2c3d64bde | 10 years ago |
|
|
cf09dfbdf8 | 10 years ago |
|
|
bb0fce21b3 | 10 years ago |
|
|
b49f5202a5 | 10 years ago |
|
|
26279df519 | 10 years ago |
|
|
de04c427ba | 10 years ago |
|
|
8616fbba19 | 10 years ago |
|
|
c088af36a9 | 10 years ago |
|
|
33edcabd36 | 10 years ago |
|
|
1c229dfa99 | 10 years ago |
|
|
52f226adfa | 10 years ago |
@ -1,4 +1,6 @@
|
|||||||
/vendor
|
/vendor
|
||||||
/node_modules
|
/node_modules
|
||||||
|
/public/storage
|
||||||
Homestead.yaml
|
Homestead.yaml
|
||||||
Homestead.json
|
Homestead.json
|
||||||
|
.env
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -1,5 +0,0 @@
|
|||||||
suites:
|
|
||||||
main:
|
|
||||||
namespace: App
|
|
||||||
psr4_prefix: App
|
|
||||||
src_path: app
|
|
||||||
@ -0,0 +1,23 @@
|
|||||||
|
<configuration>
|
||||||
|
<system.webServer>
|
||||||
|
<rewrite>
|
||||||
|
<rules>
|
||||||
|
<rule name="Imported Rule 1" stopProcessing="true">
|
||||||
|
<match url="^(.*)/$" ignoreCase="false" />
|
||||||
|
<conditions>
|
||||||
|
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
|
||||||
|
</conditions>
|
||||||
|
<action type="Redirect" redirectType="Permanent" url="/{R:1}" />
|
||||||
|
</rule>
|
||||||
|
<rule name="Imported Rule 2" stopProcessing="true">
|
||||||
|
<match url="^" ignoreCase="false" />
|
||||||
|
<conditions>
|
||||||
|
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
|
||||||
|
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
|
||||||
|
</conditions>
|
||||||
|
<action type="Rewrite" url="index.php" />
|
||||||
|
</rule>
|
||||||
|
</rules>
|
||||||
|
</rewrite>
|
||||||
|
</system.webServer>
|
||||||
|
</configuration>
|
||||||
@ -1,3 +1,15 @@
|
|||||||
# Laravel Quickstart - Basic
|
# Laravel Quickstart - Basic
|
||||||
|
|
||||||
http://laravel.com/docs/quickstart
|
## Quck Installation
|
||||||
|
|
||||||
|
git clone https://github.com/laravel/quickstart-basic quickstart
|
||||||
|
|
||||||
|
cd quickstart
|
||||||
|
|
||||||
|
composer install
|
||||||
|
|
||||||
|
php artisan migrate
|
||||||
|
|
||||||
|
php artisan serve
|
||||||
|
|
||||||
|
[Complete Tutorial](https://laravel.com/docs/5.2/quickstart)
|
||||||
|
|||||||
@ -0,0 +1,45 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Laravel</title>
|
||||||
|
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Lato:100" rel="stylesheet" type="text/css">
|
||||||
|
|
||||||
|
<style>
|
||||||
|
html, body {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
width: 100%;
|
||||||
|
display: table;
|
||||||
|
font-weight: 100;
|
||||||
|
font-family: 'Lato';
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
text-align: center;
|
||||||
|
display: table-cell;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
text-align: center;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
font-size: 96px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="content">
|
||||||
|
<div class="title">Laravel 5</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@ -1,2 +1,3 @@
|
|||||||
*
|
*
|
||||||
|
!public/
|
||||||
!.gitignore
|
!.gitignore
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
*
|
||||||
|
!.gitignore
|
||||||
Loading…
Reference in new issue