Skip to content

Commit 96046ef

Browse files
committed
Initial commit
0 parents  commit 96046ef

File tree

136 files changed

+22399
-0
lines changed

Some content is hidden

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

136 files changed

+22399
-0
lines changed

.dockerignore

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/var
2+
!/var/plugins.json
3+
/.*
4+
**/*.git
5+
**/node_modules
6+
7+
/config/jwt/*
8+
!/config/jwt/.gitignore
9+
10+
/artifacts
11+
12+
docker-compose.yml
13+
docker-compose.override.yml
14+
15+
/platform
16+
17+
/repos
18+
19+
/var/build-cache
20+
/public/theme

.editorconfig

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Shopware development editor configuration normalization
2+
# http://editorconfig.org/
3+
4+
# This is the top-most .editorconfig file; do not search in parent directories.
5+
root = true
6+
7+
# All files.
8+
[*]
9+
end_of_line = lf
10+
indent_style = space
11+
indent_size = 4
12+
charset = utf-8
13+
trim_trailing_whitespace = true
14+
insert_final_newline = true
15+
16+
[*.md]
17+
trim_trailing_whitespace = false

.env.dist

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# This file is a "template" of which env vars need to be defined for your application
2+
# Copy this file to .env file for development, create environment variables when deploying to production
3+
# https://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration
4+
5+
###> symfony/framework-bundle ###
6+
APP_ENV=__APP_ENV__
7+
APP_SECRET=8583a6ff63c5894a3195331701749943
8+
APP_URL=__APP_URL__
9+
#TRUSTED_PROXIES=127.0.0.1,127.0.0.2
10+
#TRUSTED_HOSTS=localhost,example.com
11+
###< symfony/framework-bundle ###
12+
13+
###> symfony/swiftmailer-bundle ###
14+
# For Gmail as a transport, use: "gmail://username:password@localhost"
15+
# For a generic SMTP server, use: "smtp://localhost:25?encryption=&auth_mode="
16+
# Delivery is disabled by default via "null://localhost"
17+
MAILER_URL=__APP_MAILER_URL__
18+
###< symfony/swiftmailer-bundle ###
19+
20+
INSTANCE_ID=
21+
22+
DATABASE_URL=mysql://__DB_USER__:__DB_PASSWORD__@__DB_HOST__:__DB_PORT__/__DB_NAME__
23+
24+
COMPOSER_HOME=__COMPOSER_HOME__
25+
26+
SHOPWARE_ES_HOSTS=__SHOPWARE_SES_HOSTS__
27+
SHOPWARE_ES_ENABLED=__SHOPWARE_SES_ENABLED__
28+
SHOPWARE_ES_INDEXING_ENABLED=__SHOPWARE_SES_INDEXING_ENABLED__
29+
SHOPWARE_ES_INDEX_PREFIX=__SHOPWARE_SES_INDEX_PREFIX__
30+
SHOPWARE_HTTP_CACHE_ENABLED=__SHOPWARE_HTTP_CACHE_ENABLED__
31+
SHOPWARE_HTTP_DEFAULT_TTL=__SHOPWARE_HTTP_DEFAULT_TTL__
32+
33+
__FEATURES__

.gitignore

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
custom/*
2+
!custom/plugins/.gitkeep
3+
!custom/static-plugins/
4+
5+
/vendor/
6+
/bin/vendor/
7+
8+
/.idea
9+
/docker-compose.override.yml
10+
11+
/config/packages/local.yaml
12+
/config/packages/local.yml
13+
14+
/public/fonts/*
15+
!/public/fonts/.gitkeep
16+
/public/img/*
17+
!/public/img/.gitkeep
18+
/public/css/*
19+
!/public/css/.gitkeep
20+
/public/js/*
21+
!/public/js/.gitkeep
22+
/public/media/*
23+
!/public/media/.gitkeep
24+
/public/theme/*
25+
!/public/theme/.gitkeep
26+
/public/thumbnail/*
27+
!/public/thumbnail/.gitkeep
28+
/public/plugins/*
29+
/public/assets/*
30+
/public/sitemap/*
31+
!/public/sitemap/.gitkeep
32+
/public/bundles/*
33+
!/public/bundles/.gitkeep
34+
35+
/files/*
36+
37+
/platform/
38+
/repos/
39+
40+
.env
41+
42+
.cache/
43+
44+
.envrc
45+
46+
/var/*
47+
!/var/log/.gitkeep
48+
!/var/cache/.gitkeep
49+
!/var/queue/.gitkeep
50+
!/var/test/.gitkeep
51+
!/var/plugins.json
52+
53+
/install.lock

0 commit comments

Comments
 (0)