Skip to content

Commit 8155984

Browse files
authored
Initial commit
0 parents  commit 8155984

2 files changed

Lines changed: 69 additions & 0 deletions

File tree

.gitignore

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Wordpress - ignore core, configuration, examples, uploads and logs.
2+
# https://github.com/github/gitignore/blob/main/WordPress.gitignore
3+
4+
# Core
5+
#
6+
# Note: if you want to stage/commit WP core files
7+
# you can delete this whole section/until Configuration.
8+
/wp-admin/
9+
/wp-content/index.php
10+
/wp-content/languages
11+
/wp-content/plugins/index.php
12+
/wp-content/themes/index.php
13+
/wp-includes/
14+
/index.php
15+
/license.txt
16+
/readme.html
17+
/wp-*.php
18+
/xmlrpc.php
19+
20+
# Configuration
21+
wp-config.php
22+
23+
# Example themes
24+
/wp-content/themes/twenty*/
25+
26+
# Example plugin
27+
/wp-content/plugins/hello.php
28+
29+
# Uploads
30+
/wp-content/uploads/
31+
32+
# Log files
33+
*.log
34+
35+
# htaccess
36+
/.htaccess
37+
38+
# All plugins
39+
#
40+
# Note: If you wish to whitelist plugins,
41+
# uncomment the next line
42+
#/wp-content/plugins
43+
44+
# All themes
45+
#
46+
# Note: If you wish to whitelist themes,
47+
# uncomment the next line
48+
#/wp-content/themes

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2023 WShells
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)