https://github.com/logicalclocks/hopsworks-chef
Chef Cookbook for Hopsworks
https://github.com/logicalclocks/hopsworks-chef
Last synced: about 1 year ago
JSON representation
Chef Cookbook for Hopsworks
- Host: GitHub
- URL: https://github.com/logicalclocks/hopsworks-chef
- Owner: logicalclocks
- License: agpl-3.0
- Created: 2014-11-13T21:21:23.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2024-11-05T11:09:32.000Z (over 1 year ago)
- Last Synced: 2025-04-05T09:04:22.395Z (about 1 year ago)
- Language: Ruby
- Homepage:
- Size: 10.7 MB
- Stars: 12
- Watchers: 27
- Forks: 49
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Development Tips
## Javascript/HTML development on localhost
If you are only editing javascript or html code, you can easily debug and view your changes by running the script:
````
cd scripts
./local-deploy.sh
````
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Added some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request
## Develop
You probably want to change the Vagrantfile - ports. And you don't want this change to affect your push/pull
````
git update-index --skip-worktree Vagrantfile
````
and when you actually want to change something and push it
````
git update-index --no-skip-worktree Vagrantfile
````