webcretaire / symfony-vue
Example application with Symfony 4 and Vue 2
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
Requires
- php: >=7.1.3
- ext-ctype: *
- ext-iconv: *
- friendsofsymfony/jsrouting-bundle: ^2.3
- sensio/framework-extra-bundle: ^5.1
- symfony/asset: 4.2.*
- symfony/console: 4.2.*
- symfony/dotenv: 4.2.*
- symfony/expression-language: 4.2.*
- symfony/flex: ^1.1
- symfony/form: 4.2.*
- symfony/framework-bundle: 4.2.*
- symfony/monolog-bundle: ^3.1
- symfony/orm-pack: *
- symfony/process: 4.2.*
- symfony/security-bundle: 4.2.*
- symfony/serializer-pack: *
- symfony/swiftmailer-bundle: ^3.1
- symfony/translation: 4.2.*
- symfony/twig-bundle: 4.2.*
- symfony/validator: 4.2.*
- symfony/web-link: 4.2.*
- symfony/webpack-encore-bundle: ^1.2
- symfony/yaml: 4.2.*
Requires (Dev)
Conflicts
This package is auto-updated.
Last update: 2025-03-29 00:36:18 UTC
README
This project demonstrate how Symfony 4 and Vue.JS 2 can be integrated in the same project.
Why does this exist ?
Most template / tutorials online help you build a website with a separated frontend and backend, but few will explain how you can host both in the same project, although it is useful for small project which have only one developer (or at least no separated frontend/backend teams).
Dependencies
This project suppose you use Virtualbox and Vagrant. Although if you don't want to you can delete the Vagrantfile
and ansible
directory and serve the app in development however you want (for example using Symfony's dev server).
Installation
On your system
Customize variables inside ansible/vars.yml
according to your needs.
Add whatever you chose for the server_domain
var to your host file (on Windows it is located in C:\Windows\System32\drivers\etc\hosts
).
Start the virtual machine by running vagrant up
inside you project folder.
On the VM
The frontend is compiled once by Ansible when the WM is created, but to watch changes made to the files you can use make watch_assets
, or run make vue_ui
and manage webpack through vue-ui on port 8001 (http://project.dom:8001 in this example)
Usage
Once the installation is complete, you should see this page when going on the domain you chose on port 8000 (http://project.dom:8000 in this example) :
You can then start developing your frontend at front/src/
and your backend at src/
.