Skip to content

Commit 6a6a94d

Browse files
committed
Project updated
1 parent e46fad9 commit 6a6a94d

File tree

324 files changed

+4897
-30830
lines changed

Some content is hidden

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

324 files changed

+4897
-30830
lines changed

.editorconfig

-19
This file was deleted.

.env

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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+
#
13+
# Run "composer dump-env prod" to compile .env files for production use (requires symfony/flex >=1.2).
14+
# https://symfony.com/doc/current/best_practices.html#use-environment-variables-for-infrastructure-configuration
15+
16+
###> symfony/framework-bundle ###
17+
APP_ENV=dev
18+
APP_SECRET=af4a58b2be54a17d7306c52becf2b42f
19+
###< symfony/framework-bundle ###
20+
###> doctrine/doctrine-bundle ###
21+
# Format described at https://www.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
22+
# IMPORTANT: You MUST configure your server version, either here or in config/packages/doctrine.yaml
23+
#
24+
DATABASE_URL="sqlite:///%kernel.project_dir%/var/data.db"
25+
# DATABASE_URL="mysql://db_user:db_password@127.0.0.1:3306/db_name?serverVersion=5.7&charset=utf8mb4"
26+
#DATABASE_URL="postgresql://symfony:ChangeMe@127.0.0.1:60326/app?serverVersion=13&charset=utf8"
27+
###< doctrine/doctrine-bundle ###
28+
TRUSTED_HOSTS=.*
29+
TRUSTED_PROXIES=127.0.0.1,REMOTE_ADDR
30+
31+
RP_ID="localhost"

.env.dist

-34
This file was deleted.

.env.local

-4
This file was deleted.

.env.local.docker

-1
This file was deleted.

.env.test

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# define your env variables for the test env here
22
KERNEL_CLASS='App\Kernel'
3-
APP_SECRET='s$cretf0rt3st'
3+
APP_SECRET='$ecretf0rt3st'
44
SYMFONY_DEPRECATIONS_HELPER=999999
5+
PANTHER_APP_ENV=panther
6+
PANTHER_ERROR_SCREENSHOT_DIR=./var/error-screenshots

.eslintignore

-3
This file was deleted.

.eslintrc.js

-164
This file was deleted.

.gitignore

+14-20
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,30 @@
11
###> symfony/framework-bundle ###
2-
.env
2+
/.env.local
3+
/.env.local.php
4+
/.env.*.local
5+
/config/secrets/prod/prod.decrypt.private.php
36
/public/bundles/
47
/var/
58
/vendor/
69
###< symfony/framework-bundle ###
710

8-
###> symfony/webpack-encore-pack ###
9-
/node_modules/
10-
/public/build/
11-
###< symfony/webpack-encore-pack ###
12-
13-
###> symfony/phpunit-bridge ###
14-
.phpunit
15-
/phpunit.xml
16-
###< symfony/phpunit-bridge ###
17-
1811
###> symfony/webpack-encore-bundle ###
1912
/node_modules/
2013
/public/build/
2114
npm-debug.log
2215
yarn-error.log
2316
###< symfony/webpack-encore-bundle ###
24-
25-
###> symfony/web-server-bundle ###
26-
/.web-server-pid
27-
###< symfony/web-server-bundle ###
28-
29-
###> lexik/jwt-authentication-bundle ###
30-
/config/jwt/*.pem
31-
###< lexik/jwt-authentication-bundle ###
32-
3317
###> phpunit/phpunit ###
3418
/phpunit.xml
3519
.phpunit.result.cache
3620
###< phpunit/phpunit ###
21+
22+
###> symfony/phpunit-bridge ###
23+
.phpunit.result.cache
24+
/phpunit.xml
25+
###< symfony/phpunit-bridge ###
26+
27+
###> symfony/webpack-encore-pack ###
28+
/node_modules/
29+
/public/build/
30+
###< symfony/webpack-encore-pack ###

0 commit comments

Comments
 (0)