Skip to content

Commit 2f3d0a0

Browse files
committed
Initial commit
0 parents  commit 2f3d0a0

File tree

2,190 files changed

+569193
-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.

2,190 files changed

+569193
-0
lines changed

.env

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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=prod
7+
APP_DEBUG=0
8+
APP_SECRET=384b043b67a4f1431eef6b2f6e50b2cb
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=null://localhost
18+
###< symfony/swiftmailer-bundle ###
19+
20+
###> doctrine/doctrine-bundle ###
21+
# Format described at http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
22+
# For an SQLite database, use: "sqlite:///%kernel.project_dir%/var/data.db"
23+
# Configure your db driver and server_version in config/packages/doctrine.yaml
24+
DATABASE_URL=mysql://user:[email protected]:3306/DatabaseName
25+
###< doctrine/doctrine-bundle ###

.gitignore

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
###> symfony/framework-bundle ###
2+
.env
3+
/public/bundles/
4+
/var/
5+
/vendor/
6+
/node_modules/
7+
###< symfony/framework-bundle ###
8+
9+
###> symfony/web-server-bundle ###
10+
.web-server-pid
11+
###< symfony/web-server-bundle ###
12+
13+
###> symfony/webpack-encore-pack ###
14+
/node_modules/
15+
/public/build/
16+
###< symfony/webpack-encore-pack ###
17+
18+
###> friendsofphp/php-cs-fixer ###
19+
.php_cs
20+
.php_cs.cache
21+
###< friendsofphp/php-cs-fixer ###
22+
23+
###> symfony/phpunit-bridge ###
24+
.phpunit
25+
/phpunit.xml
26+
###< symfony/phpunit-bridge ###
27+
28+
###> symfony/webpack-encore-bundle ###
29+
/node_modules/
30+
/public/build/
31+
npm-debug.log
32+
yarn-error.log
33+
###< symfony/webpack-encore-bundle ###
34+
35+
#Other
36+
var/cache/*
37+
var/sessions/*
38+
*.sql
39+
#Password hasher secret key
40+
config/services.yaml
41+
src/Migrations/*

.idea/deployment.xml

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

.idea/php.xml

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

.idea/remote-mappings.xml

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

.idea/vcs.xml

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

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 Volmarg Reiso
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.

Procfile

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
web: vendor/bin/heroku-php-apache2 /public

0 commit comments

Comments
 (0)