Packages, tools, articles, websites, tutorials, etc., recommended to PHP developers by Saritasa team. Includes lots of frontend stuff, especially related with VueJS framework, as we use it intensively.
Just edit list.yaml file and commit it to master branch. It will be published on GH Phages site automatically.
- Edit list.yaml with your favorite editor to add/update knowledge base
- Run application in development mode locally, that you didn't break anything (ex. unexpected changes to application):
npm install && npm run serve
. - Open in browser at http://localhost:8080 and check, if your changes are visible as you expected.
- Commit and push your changes:
git add docs/list.yaml
git commit -m "explan, what you added/changed"
git push
npm install
- install all required dependenciesnpm run serve
- build application in development mode and run development HTTP server locally
Before you make pull request, make sure, that linters pass without errors or warnings:
npm run lint
Also see other commands, available with Vue CLI.
To update SPA application, hosted on GitHub Pages:
npm install
- install all required dependenciesnpm run build
- update files in 'docs' folder and commit themgit add docs
- add changed result files to commitgit commit -m "explain why you changed app"
- commit your chagesgit push
- submit changes to GitHub