gonzakpo / symfony_base
Symfony base adds admin user, security, fixture, bootstrap.
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 3
Open Issues: 7
Type:symfony-project
Requires
- php: ^7.2.5
- ext-ctype: *
- ext-iconv: *
- easycorp/easyadmin-bundle: ^2.3
- sensio/framework-extra-bundle: ^5.1
- symfony/asset: 5.0.*
- symfony/console: 5.0.*
- symfony/dotenv: 5.0.*
- symfony/expression-language: 5.0.*
- symfony/flex: ^1.3.1
- symfony/form: 5.0.*
- symfony/framework-bundle: 5.0.*
- symfony/http-client: 5.0.*
- symfony/intl: 5.0.*
- symfony/mailer: 5.0.*
- symfony/monolog-bundle: ^3.1
- symfony/orm-pack: *
- symfony/process: 5.0.*
- symfony/security-bundle: 5.0.*
- symfony/serializer-pack: *
- symfony/translation: 5.0.*
- symfony/twig-pack: *
- symfony/validator: 5.0.*
- symfony/web-link: 5.0.*
- symfony/yaml: 5.0.*
Requires (Dev)
Conflicts
- dev-master
- v5.0
- v4.4
- dev-dependabot/composer/symfony/security-bundle-5.4.20
- dev-dependabot/composer/twig/twig-3.4.3
- dev-dependabot/composer/guzzlehttp/psr7-1.8.5
- dev-dependabot/composer/symfony/security-core-5.2.8
- dev-dependabot/composer/symfony/security-http-5.2.8
- dev-dependabot/composer/symfony/security-guard-5.2.8
- dev-symfony5.0
This package is auto-updated.
Last update: 2024-10-29 23:25:25 UTC
README
Symfony base adds admin user, security, fixture, bootstrap.
Installation
Open a command console, enter your project directory and execute:
git clone https://github.com/gonzaloalonsod/symfony_base.git cd symfony_base composer install
composer dump-env prod # cp .env .env.local
Configure .env.local:
- SUPER_EMAIL=
- SUPER_PASSWORD=
symfony console doc:data:create symfony console doc:sche:create symfony console doc:fix:load
Docker compose
* Start containers in the background: `docker-compose up -d`
* Start containers on the foreground: `docker-compose up`. You will see a stream of logs for every container running.
* Stop containers: `docker-compose stop`
* Kill containers: `docker-compose kill`
* View container logs: `docker-compose logs`
* Execute command inside of container: `docker-compose exec SERVICE_NAME COMMAND` where `COMMAND` is whatever you want to run. Examples:
* Shell into the PHP container, `docker exec -it symfony-php-fpm bash`
* Run symfony console, `docker exec symfony-php-fpm bin/console`
* Open a mysql shell, `docker exec symfony-mariadb mysql -uroot -pCHOSEN_ROOT_PASSWORD`
Docker url
* http://127.0.0.1:8080
Use
Author
- Gonzalo Alonso - gonzaloalonsod@gmail.com
Contributors
- Felix Barros - soyFelixBarros@gmail.com
- Fabian Serafini - elfabi87@gmail.com