Skip to content

Commit 883e68f

Browse files
author
Ibexa Jenkins
committed
Template for v4.5.6
1 parent 6a02843 commit 883e68f

File tree

131 files changed

+26757
-23
lines changed

Some content is hidden

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

131 files changed

+26757
-23
lines changed

.env

Lines changed: 122 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
# In all environments, the following files are loaded if they exist,
2+
# the latter taking precedence over the former:
3+
#
4+
# * .env contains default values for the environment variables needed by the app
5+
# * .env.local uncommitted file with local overrides
6+
# * .env.$APP_ENV committed environment-specific defaults
7+
# * .env.$APP_ENV.local uncommitted environment-specific overrides
8+
#
9+
# Real environment variables win over .env files.
10+
#
11+
# DO NOT DEFINE PRODUCTION SECRETS IN THIS FILE NOR IN ANY OTHER COMMITTED FILES.
12+
# https://symfony.com/doc/current/configuration/secrets.html
13+
#
14+
# Run "composer dump-env prod" to compile .env files for production use (requires symfony/flex >=1.2).
15+
# https://symfony.com/doc/current/best_practices.html#use-environment-variables-for-infrastructure-configuration
16+
17+
###> symfony/framework-bundle ###
18+
APP_ENV=dev
19+
APP_SECRET=3356fc5daa47625a3e20a80d1bacd9a4
20+
###< symfony/framework-bundle ###
21+
22+
###> ibexa/oss ###
23+
SEARCH_ENGINE=legacy
24+
# Uncomment following line if you want to change the purge type.
25+
# By default it will use `local` purge when running locally
26+
# and `varnish` for Platform.sh installations.
27+
# HTTPCACHE_PURGE_TYPE=local
28+
HTTPCACHE_DEFAULT_TTL=86400
29+
HTTPCACHE_PURGE_SERVER=http://localhost:80
30+
HTTPCACHE_VARNISH_INVALIDATE_TOKEN=
31+
# Uncomment following line if you want to enable translation-aware behavior for HTTP cache.
32+
# HTTPCACHE_TRANSLATION_AWARE_ENABLED=true
33+
TRUSTED_PROXIES=127.0.0.1
34+
CACHE_POOL=cache.tagaware.filesystem
35+
# When using Redis or memcached adapter, you can configure it using DSN:
36+
# - https://symfony.com/doc/4.4/components/cache/adapters/redis_adapter.html#configure-the-connection
37+
# - https://symfony.com/doc/4.4/components/cache/adapters/memcached_adapter.html#configure-the-connection
38+
CACHE_DSN=localhost
39+
CACHE_NAMESPACE=ibexa
40+
DATABASE_CHARSET=utf8mb4
41+
DATABASE_COLLATION=utf8mb4_unicode_520_ci
42+
# Needed by Doctrine Bundle / ORM to prevent it from opening a connection during situations where there is no service yet.
43+
# See: https://symfony.com/doc/current/reference/configuration/doctrine.html#doctrine-dbal-configuration
44+
DATABASE_VERSION=mariadb-10.3.0
45+
SESSION_HANDLER_ID=session.handler.native_file
46+
SESSION_SAVE_PATH=%kernel.project_dir%/var/sessions/%kernel.environment%
47+
SOLR_DSN=http://localhost:8983/solr
48+
SOLR_CORE=collection1
49+
IBEXA_EDITION=oss
50+
###< ibexa/oss ###
51+
52+
###> ibexa/content ###
53+
SEARCH_ENGINE=legacy
54+
# Uncomment following line if you want to change the purge type.
55+
# By default it will use `local` purge when running locally
56+
# and `varnish` for Platform.sh installations.
57+
# HTTPCACHE_PURGE_TYPE=local
58+
HTTPCACHE_DEFAULT_TTL=86400
59+
HTTPCACHE_PURGE_SERVER=http://localhost:80
60+
HTTPCACHE_VARNISH_INVALIDATE_TOKEN=
61+
# Uncomment following line if you want to enable translation-aware behavior for HTTP cache.
62+
# HTTPCACHE_TRANSLATION_AWARE_ENABLED=true
63+
TRUSTED_PROXIES=127.0.0.1
64+
CACHE_POOL=cache.tagaware.filesystem
65+
# When using Redis or memcached adapter, you can configure it using DSN:
66+
# - https://symfony.com/doc/4.4/components/cache/adapters/redis_adapter.html#configure-the-connection
67+
# - https://symfony.com/doc/4.4/components/cache/adapters/memcached_adapter.html#configure-the-connection
68+
CACHE_DSN=localhost
69+
CACHE_NAMESPACE=ezp
70+
DATABASE_CHARSET=utf8mb4
71+
DATABASE_COLLATION=utf8mb4_unicode_520_ci
72+
# Needed by Doctrine Bundle / ORM to prevent it from opening a connection during situations where there is no service yet.
73+
# See: https://symfony.com/doc/current/reference/configuration/doctrine.html#doctrine-dbal-configuration
74+
DATABASE_VERSION=mariadb-10.3.0
75+
SESSION_HANDLER_ID=session.handler.native_file
76+
SESSION_SAVE_PATH=%kernel.project_dir%/var/sessions/%kernel.environment%
77+
SOLR_DSN=http://localhost:8983/solr
78+
SOLR_CORE=collection1
79+
# Enable Personalization by setting valid id, key and uri
80+
PERSONALIZATION_CUSTOMER_ID=0
81+
PERSONALIZATION_LICENSE_KEY=
82+
PERSONALIZATION_HOST_URI=
83+
ELASTICSEARCH_DSN=http://localhost:9200
84+
# Enable fastly by setting valid service_id and key
85+
# In order for this to work you also need to have EzSystemsPlatformFastlyCacheBundle installed
86+
# FASTLY_SERVICE_ID=""
87+
# FASTLY_KEY=""
88+
IBEXA_EDITION=content
89+
IBEXA_VARIATION_HANDLER_IDENTIFIER=alias
90+
###< ibexa/content ###
91+
92+
###> nelmio/cors-bundle ###
93+
CORS_ALLOW_ORIGIN='^https?://(localhost|127\.0\.0\.1)(:[0-9]+)?$'
94+
###< nelmio/cors-bundle ###
95+
96+
###> doctrine/doctrine-bundle ###
97+
# Format described at https://www.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
98+
# IMPORTANT: You MUST configure your server version, either here or in config/packages/doctrine.yaml
99+
#
100+
# DATABASE_URL="sqlite:///%kernel.project_dir%/var/data.db"
101+
# DATABASE_URL="mysql://app:[email protected]:3306/app?serverVersion=8&charset=utf8mb4"
102+
DATABASE_URL="postgresql://app:[email protected]:5432/app?serverVersion=16&charset=utf8"
103+
###< doctrine/doctrine-bundle ###
104+
105+
###> symfony/swiftmailer-bundle ###
106+
# For Gmail as a transport, use: "gmail://username:password@localhost"
107+
# For a generic SMTP server, use: "smtp://localhost:25?encryption=&auth_mode="
108+
# Delivery is disabled by default via "null://localhost"
109+
MAILER_URL=null://localhost
110+
###< symfony/swiftmailer-bundle ###
111+
112+
###> lexik/jwt-authentication-bundle ###
113+
JWT_SECRET_KEY=%kernel.project_dir%/config/jwt/private.pem
114+
JWT_PUBLIC_KEY=%kernel.project_dir%/config/jwt/public.pem
115+
JWT_PASSPHRASE=8892d8fe6c95d2f3997cfe4a33bef2234b0345195af4a53208c3ebfb0abe3313
116+
###< lexik/jwt-authentication-bundle ###
117+
118+
###> symfony/lock ###
119+
# Choose one of the stores below
120+
# postgresql+advisory://db_user:db_password@localhost/db_name
121+
LOCK_DSN=flock
122+
###< symfony/lock ###

.github/pull_request_template.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
| Question | Answer
2+
| ---------------------------------------- | ------------------
3+
| **JIRA issue** | EZP-XXXXX
4+
| **Type** | feature/bug/improvement
5+
| **Target Ibexa version** | `v3.x` - please update `x` accordingly
6+
| **BC breaks** | yes/no
7+
| **Doc needed** | yes/no
8+
9+
<!-- Replace this comment with Pull Request description -->
10+
11+
#### Checklist:
12+
- [ ] Provided PR description.
13+
- [ ] Tested the solution manually.
14+
- [ ] Checked that target branch is set correctly.
15+
- [ ] Asked for a review (ping `@ibexa/engineering`).

.gitignore

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
###> symfony/framework-bundle ###
3+
/.env.local
4+
/.env.local.php
5+
/.env.*.local
6+
/config/secrets/prod/prod.decrypt.private.php
7+
/public/bundles/
8+
/var/
9+
/vendor/
10+
###< symfony/framework-bundle ###
11+
12+
###> liip/imagine-bundle ###
13+
/public/media/cache/
14+
###< liip/imagine-bundle ###
15+
16+
###> symfony/webpack-encore-bundle ###
17+
/node_modules/
18+
/public/build/
19+
npm-debug.log
20+
yarn-error.log
21+
###< symfony/webpack-encore-bundle ###
22+
23+
###> lexik/jwt-authentication-bundle ###
24+
/config/jwt/*.pem
25+
###< lexik/jwt-authentication-bundle ###

README.md

Lines changed: 20 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,38 @@
1-
# Ibexa DXP Content skeleton
1+
# Ibexa Flex website skeleton
22

3-
This is a website skeleton for Ibexa DXP Content edition. It requires a subscription.
4-
5-
Learn more about [Ibexa DXP](https://www.ibexa.co/products).
3+
This is a Symfony Flex website skeleton allowing installation of all editions of
4+
[Ibexa DXP](https://www.ibexa.co/products) and Ibexa Open Source.
65

76
## Installation
87

9-
Create a new project using composer:
10-
```
11-
composer create-project ibexa/content-skeleton ibexa_website
12-
```
8+
For installation instructions of Ibexa DXP see either
9+
[the official documentation](https://doc.ibexa.co/) or packages for specific editions:
10+
* [Ibexa Content](https://github.com/ibexa/content)
11+
* [Ibexa Experience](https://github.com/ibexa/experience)
12+
* [Ibexa Commerce](https://github.com/ibexa/commerce)
13+
14+
Ibexa DXP is licensed under Ibexa Business Use License Agreement (Ibexa BUL) and requires
15+
a subscription. Learn more about [Ibexa DXP](https://www.ibexa.co/products).
16+
17+
For installation instructions of Ibexa Open Source see [ibexa/oss](https://github.com/ibexa/oss)
18+
package.
1319

1420
## COPYRIGHT
15-
Copyright (C) 1999-2020 Ibexa AS (formerly eZ Systems AS). All rights reserved.
21+
Copyright (C) 1999-2021 Ibexa AS (formerly eZ Systems AS). All rights reserved.
1622

1723
## LICENSE
1824
This source code is available separately under the following licenses:
1925

2026
A - Ibexa Business Use License Agreement (Ibexa BUL),
21-
version 2.4 or later versions (as license terms may be updated from time to time)
27+
version 2.3 or later versions (as license terms may be updated from time to time)
2228
Ibexa BUL is granted by having a valid Ibexa DXP (formerly eZ Platform Enterprise) subscription,
2329
as described at: https://www.ibexa.co/product
2430
For the full Ibexa BUL license text, please see:
25-
- LICENSE-bul file placed in the root of this source code, or
26-
- https://www.ibexa.co/software-information/licenses-and-agreements (latest version applies)
31+
https://www.ibexa.co/software-information/licenses-and-agreements (latest version applies)
2732

2833
AND
2934

30-
B - Ibexa Trial and Test License Agreement (Ibexa TTL),
31-
version 2.2 or later versions (as license terms may be updated from time to time)
32-
Trial can be granted by Ibexa, reach out to Ibexa AS for evaluation access: https://www.ibexa.co/about-ibexa/contact-us
33-
For the full Ibexa TTL license text, please see:
35+
B - GNU General Public License, version 2
36+
Grants an copyleft open source license with ABSOLUTELY NO WARRANTY. For the full GPL license text, please see:
3437
- LICENSE file placed in the root of this source code, or
35-
- https://www.ibexa.co/software-information/licenses-and-agreements (latest version applies)
38+
- https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

assets/app.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/*
2+
* Welcome to your app's main JavaScript file!
3+
*
4+
* We recommend including the built version of this JavaScript file
5+
* (and its CSS file) in your base layout (base.html.twig).
6+
*/
7+
8+
// any CSS you import will output into a single css file (app.css in this case)
9+
import './styles/app.css';
10+
11+
// start the Stimulus application
12+
import './bootstrap';

assets/bootstrap.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { startStimulusApp } from '@symfony/stimulus-bridge';
2+
3+
// Registers Stimulus controllers from controllers.json and in the controllers/ directory
4+
export const app = startStimulusApp(require.context(
5+
'@symfony/stimulus-bridge/lazy-controller-loader!./controllers',
6+
true,
7+
/\.[jt]sx?$/
8+
));
9+
10+
// register any custom, 3rd party controllers here
11+
// app.register('some_controller_name', SomeImportedController);

assets/controllers.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"controllers": [],
3+
"entrypoints": []
4+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import { Controller } from '@hotwired/stimulus';
2+
3+
/*
4+
* This is an example Stimulus controller!
5+
*
6+
* Any element with a data-controller="hello" attribute will cause
7+
* this controller to be executed. The name "hello" comes from the filename:
8+
* hello_controller.js -> "hello"
9+
*
10+
* Delete this file or adapt it for your use!
11+
*/
12+
export default class extends Controller {
13+
connect() {
14+
this.element.textContent = 'Hello Stimulus! Edit me in assets/controllers/hello_controller.js';
15+
}
16+
}

assets/images/caret-down.svg

Lines changed: 4 additions & 0 deletions
Loading

assets/images/content.png

372 KB
Loading

0 commit comments

Comments
 (0)