Skip to content

Commit 8fbc106

Browse files
committed
initial commit
1 parent 0cb4c77 commit 8fbc106

32 files changed

+2561
-509
lines changed

Diff for: .env

+6-8
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,12 @@ APP_SECRET=ed197c7cc15ef5a68e11c7e1e82b421b
2828
# DATABASE_URL="mysql://app:[email protected]:3306/app?serverVersion=10.11.2-MariaDB&charset=utf8mb4"
2929
DATABASE_URL="postgresql://app:[email protected]:5432/app?serverVersion=16&charset=utf8"
3030
###< doctrine/doctrine-bundle ###
31-
32-
###> symfony/messenger ###
33-
# Choose one of the transports below
34-
# MESSENGER_TRANSPORT_DSN=amqp://guest:guest@localhost:5672/%2f/messages
35-
# MESSENGER_TRANSPORT_DSN=redis://localhost:6379/messages
36-
MESSENGER_TRANSPORT_DSN=doctrine://default?auto_setup=0
37-
###< symfony/messenger ###
38-
3931
###> symfony/mailer ###
4032
# MAILER_DSN=null://null
4133
###< symfony/mailer ###
34+
35+
###> symfony/lock ###
36+
# Choose one of the stores below
37+
# postgresql+advisory://db_user:db_password@localhost/db_name
38+
LOCK_DSN=flock
39+
###< symfony/lock ###

Diff for: .gitignore

+8-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
###> symfony/framework-bundle ###
32
/.env.local
43
/.env.local.php
@@ -19,7 +18,11 @@
1918
/phpunit.xml
2019
###< symfony/phpunit-bridge ###
2120

22-
###> symfony/asset-mapper ###
23-
/public/assets/
24-
/assets/vendor/
25-
###< symfony/asset-mapper ###
21+
###> symfony/webpack-encore-bundle ###
22+
/node_modules/
23+
/public/build/
24+
npm-debug.log
25+
yarn-error.log
26+
###< symfony/webpack-encore-bundle ###
27+
/yarn.lock
28+
/.idea/

Diff for: .idea/modules.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: assets/app.js

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
import './bootstrap.js';
21
/*
32
* Welcome to your app's main JavaScript file!
43
*
5-
* This file will be included onto the page via the importmap() Twig function,
6-
* which should already be in your base.html.twig.
4+
* We recommend including the built version of this JavaScript file
5+
* (and its CSS file) in your base layout (base.html.twig).
76
*/
8-
import './styles/app.css';
97

10-
console.log('This log comes from assets/app.js - welcome to AssetMapper! 🎉');
8+
// any CSS you import will output into a single css file (app.css in this case)
9+
import './styles/app.css';

Diff for: assets/controllers.json

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
{
22
"controllers": {
3+
"@symfony/ux-live-component": {
4+
"live": {
5+
"enabled": true,
6+
"fetch": "eager",
7+
"autoimport": {
8+
"@symfony/ux-live-component/dist/live.min.css": true
9+
}
10+
}
11+
},
312
"@symfony/ux-turbo": {
413
"turbo-core": {
514
"enabled": true,

Diff for: assets/icons/clarity/archive-line.svg

+14
Loading
+7
Loading

Diff for: assets/icons/game-icons/magic-broom.svg

+4
Loading

Diff for: assets/icons/pajamas/hamburger.svg

+5
Loading

Diff for: assets/icons/symfony.svg

+5
Loading

Diff for: assets/styles/app.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
body {
2-
background-color: skyblue;
2+
background-color: lightgray;
33
}

Diff for: composer.json

+2-4
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,11 @@
1111
"doctrine/doctrine-bundle": "^2.13",
1212
"doctrine/doctrine-migrations-bundle": "^3.3",
1313
"doctrine/orm": "^3.2",
14+
"php-bug-catcher/bug-catcher": "^1.0",
1415
"phpdocumentor/reflection-docblock": "^5.4",
1516
"phpstan/phpdoc-parser": "^1.30",
1617
"symfony/asset": "7.1.*",
17-
"symfony/asset-mapper": "7.1.*",
1818
"symfony/console": "7.1.*",
19-
"symfony/doctrine-messenger": "7.1.*",
2019
"symfony/dotenv": "7.1.*",
2120
"symfony/expression-language": "7.1.*",
2221
"symfony/flex": "^2",
@@ -76,8 +75,7 @@
7675
"scripts": {
7776
"auto-scripts": {
7877
"cache:clear": "symfony-cmd",
79-
"assets:install %PUBLIC_DIR%": "symfony-cmd",
80-
"importmap:install": "symfony-cmd"
78+
"assets:install %PUBLIC_DIR%": "symfony-cmd"
8179
},
8280
"post-install-cmd": [
8381
"@auto-scripts"

0 commit comments

Comments
 (0)