README
Strapi plugin make-deploy
installation
yarn strapi install make-deploy
development
setup new custom strapi instance
yarn create strapi-app test-plugins --quickstart
cd test-plugins
# create a sym-link for cloned plugin repo:
yarn dev --watch-admin
Clone repo
Create symlink for custom
strapi-plugin-make-deploy
# MacOS
ln -s {{ROOT_PATH}}/strapi-plugin-make-deploy {{ROOT_PATH}}/test-plugins/plugins/make-deploy
rem Windows
New-Item -ItemType SymbolicLink -Name .\examples\getstarted\plugins\menu -Target .\packages\strapi-plugin-menu\
- Code installation/setup
# cd {{ROOT_PATH}}/
# cd {{ROOT_PATH}}/examples/getstarted
yarn build
yarn dev # its alias for `yarn develop --watch-admin`
# open URLs:
> http://localhost:8000/admin
> http://127.0.0.1:1337/documentation/v1.0.0
> http://localhost:1337/graphql
windows troubleshooting
set HOST
env variable for localhost
HOST=127.0.0.0