Skip to content

Commit e2ddf46

Browse files
committed
first commit
1 parent e42c394 commit e2ddf46

File tree

207 files changed

+20085
-674
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

207 files changed

+20085
-674
lines changed

.editorconfig

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_style = space
6+
indent_size = 4
7+
end_of_line = lf
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
11+
[*.{rb,sh,md,yaml},package.json]
12+
indent_size = 2
13+
14+
[*.md]
15+
trim_trailing_whitespace = false

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
node_modules
2+
.DS_Store
3+
.idea
4+
/sftp-config.json
5+
static
6+
7+
/vendor

.htaccess

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
RewriteEngine On
2+
#RewriteBase /
3+
4+
RewriteCond %{REQUEST_FILENAME} !-f
5+
RewriteCond %{REQUEST_FILENAME} !-d
6+
RewriteRule . index.php [L,QSA]

Gruntfile.js

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
module.exports = function (grunt) {
2+
'use strict';
3+
4+
grunt.loadNpmTasks('grunt-php');
5+
6+
grunt.initConfig({
7+
php: {
8+
dist: {
9+
options: {
10+
keepalive: true,
11+
open: true,
12+
port: 8085,
13+
router: "index.php"
14+
}
15+
}
16+
}
17+
});
18+
19+
grunt.registerTask('default', ['php']);
20+
};

LICENSE

+20-674
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)