This is a webchain landing page developed with a fresh vue and symfony.
- PHP 7.1^ & Composer
- NodeJs 10^ & NPM 5^
- MySql 5.6 or compatible DBMS
- Mainpage
- Blog
- Admin Panel
- Install required dependencies:
composer installfor development environment orcomposer install --no-devfor staging/production environment; - Configure environment variables or use
.env(look.env.distfor example); - Update your database with latest migrations:
php bin/console doctrine:migrations:migrate; - Configure your webserver to pass all requests to the
public/app.phpfile. In dev environment you can just run Symfony's webserver viaserver:startconsole command; - Install npm dependencies:
npm install; - Build assets:
npm run devfor development environment ornpm run prodfor staging/production environment; - Check if everythink fine by visiting application page. Done.