Skip to content

CrewHRM/CrewHRM

Repository files navigation

Crew HRM

WordPress Plugin for human resource management system. This is the free version repository where you can report bugs, vote on feature ideas, etc.

Please send pull requests if you find security issues or want to help us fix bugs.

To discuss ideas with us in private, please use the contact form on our website https://getcrewhrm.com/contact/

Production Deployment

Download production build from WordPress Plugin Directory or Github Releases.

Development environment setup

  • Open terminal at ~/wp-content/plugins/ directory
  • Run git clone https://github.com/CrewHRM/CrewHRM.git
  • Run cd CrewHRM
  • Run npm install
  • Run npm run build to compile scirpts in production mode and create releasable zip file.
  • Or, Run npm run watch if you'd like the codes to be compiled in development mode and need continuous compilation on code changes.

If it is cloned already, and need to pull updated codebase then

  • open terminal at ~wp-content/plugins/CrewHRM/
  • run git pull
  • and then npm run build or npm run watch

Whenever you pull updates to local repository, don't forget to run npm install and npm run build or watch again.