See phpsw/phpsw-symfony5 for the replacement project.
vagrant up
vagrant ssh
cd /vagrant
yarn install
(to install NPM dependencies).cp app/config/secrets_template.yml app/config/secrets.yml
app/config/secrets.yml
with your Meetup API key (not this is only needed if you want to use the entity generation scripts with meetup)To run the commands use /vagrant/runner.php
To validate data: ./runner.php phpsw:validate-data
There are a number of scripts to help generate the JSON data files. You can supply a meetup id and it will pull the data from meetup.
Generate person: ./runner.php phpsw:generate-file-person <meetup-id>
(meetup ID is optional, used to pull down as much data from Meetup as is available)
Generate event: ./runner.php phpsw:generate-file-event <meetup-id>
Generate all event files: ./data/scripts/generate-events.sh
(Use with caution - this will re-generate all event files from meetup data but keep in mind that any manual edits which have been made to the existing event files will likely be lost. This script calls the phpsw:generate-file-event
command for each event meetup ID from the list defined within.)
To generate website run the following steps on the VM
cd /vagrant
./runner.php phpsw:generate-website
yarn dev
or yarn watch
to generate and watch.Once you've generated the website point your broswer to (http://phpsw.local)
This assumes:
Prior to every commit execute composer cs-fix
from within the VM. This will fix any code style issues.
Execute composer ci
from within the VM to run the CI tests locally.
See the architecture.md file in the app directory for details on architecture.