helsingborg-stad / gdi-modularity-my-pages-about-me
About me module
Installs: 9 449
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 5
Forks: 0
Open Issues: 2
Type:wordpress-plugin
Requires (Dev)
- brain/monkey: ^2.6
- codedungeon/phpunit-result-printer: ^0.31.0
- phpunit/phpunit: ^9.5
This package is auto-updated.
Last update: 2024-10-24 13:50:43 UTC
README
Modularity Module that allows authenticated users to manage contact details. This is a React app wrapped within a Wordpress plugin as a Modularity module.
Getting started
# clone repo into wp-content/plugins folder git clone https://github.com/helsingborg-stad/gdi-modularity-my-pages-about-me.git # install composer dependencies composer install # install npm dependencies yarn # build scripts yarn build # watch scripts (for development) yarn watch # activate wordpress plugin (using wp-cli) wp plugin activate gdi-modularity-my-pages-about-me --url=example.local # configure api endpoint (using wp-cli) wp option update options_about_me_api_uri http://localhost:3000/api/v1/aboutme --url=example.local
Getting started (Headless without Wordpress)
This plugin can be run without Wordpress (for development).
# install dependencies yarn # copy example env cp .env.example .env # start web server yarn start