Puppet module to configure gitea
This module installs gitea from upstream binary
Install a gitea with default settings
class {'gitea':
}
Install gitea with postgresql backend, needs an installed
class {'gitea':
database_type => 'postgresql',
database_host => '127.0.0.1:5432',
database_name => 'gitea',
database_user => 'gitea',
database_password => 'someultrasecretstuff',
}
All parameters are documented with puppet-strings. You can view the markdown-rendered result at REFERENCE.md.
This module has several unit tests and linters configured. You can execute them by running:
bundle exec rake test
Contribution is fairly easy:
- Fork the module into your namespace
- Create a new branch
- Commit your bugfix or enhancement
- Write a test for it (maybe start with the test first)
- Create a pull request
Or simply open an issue, maybe someone will have a look into it!
This project is participating at hacktoberfest
This module was originally written by Sebastian Rakel and reviewed by my personal puppet guru Tim Meusel. It's licensed with AGPL version 3.