Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 1.03 KB

README.md

File metadata and controls

43 lines (28 loc) · 1.03 KB

Web of Czech PHP Community

Build Status

We're family of PHP developers from the Czech Republic, learning from each other on meetups and trainings. We meet once a month in Prague, Brno and less often 4 other cities.

Install

# install PHP dependencies
composer install

# install NPM dependencies
yarn install

# build assets + live rebuild
yarn run watch

# final step - run the website
php -S localhost:8000 -t public

Open localhost:8000 to see if it worked!

Run via Docker

docker-compose up

Project is available on localhost:8080 including live rebuild (aka watch).

Production build

Publicly, application is served as static, plaid old and good HTML+CSS.

This command generates static files, into /output directory:

bin/console dump-static-site

It is automatically built and released using CI via Github Actions.