summaryrefslogtreecommitdiffstats
path: root/CONTRIBUTING.md (follow)
Commit message (Collapse)AuthorAgeFilesLines
* CONTRIBUTING.md: remove IRC remnants (#15492)Andrew Klychkov2024-09-051-2/+2
|
* Remove references to IRC & Google Groups (#15480)John Barker2024-08-301-4/+4
| | | Signed-off-by: John Barker <john@johnrbarker.com>
* Remove old UI (#15414)Hao Liu2024-08-221-3/+1
| | | | | | * Remove source code for old UI * Rename ui-next to ui * Remove license scan for javascript dependencies
* Make ui_next the default UI (#15405)Seth Foster2024-07-291-4/+4
| | | | | | | | | | | | | Change django url dispatcher to serve up ui_next files instead of old ui files Old UI will not be served with this change Github CI still runs old ui tests (to be removed in another PR) Remove the Github workflows that build old UI --------- Signed-off-by: Seth Foster <fosterbseth@gmail.com>
* Updating CONTRIBUTING guide (#12565)John Westcott IV2022-07-271-35/+27
|
* Adding ability to run user level pre-commit hooks (#11923)John Westcott IV2022-03-241-0/+9
| | | | | * Adding ability to run user level pre-commit hooks * Adding pre-commit docs in CONTRIBUTING.md
* fix link to debugging documentationDaniel Ziegenberg2021-10-301-1/+1
| | | | Signed-off-by: Daniel Ziegenberg <daniel@ziegenberg.at>
* Merge ui and ui_next in one dirnixocio2021-08-021-43/+46
| | | | | | | | | | | | Merge ui and ui_next in one dir See: https://github.com/ansible/awx/issues/10676 Update django .po files Update django .po files Run `awx-manage makemessages`.
* Move irc references to point to irc.libera.chatBill Nottingham2021-05-271-4/+4
| | | | c.f. https://github.com/ansible-community/community-topics/issues/19#issuecomment-849071636
* Move to webchat.freenode.net.Bill Nottingham2021-04-051-4/+4
|
* move code linting to a stricter pep8-esque auto-formatting tool, blackRyan Petrello2021-03-231-1/+1
|
* Consolidate the Local Docker installer and the dev envChristian M. Adams2021-02-221-207/+17
| | | | | | | | | | | | | | - removes local_docker installer and points community users to our development environment (make docker-compose) - provides a migration path from Local Docker Compose installations --> the dev environment - the dev env can now be configured to use an external database - consolidated the Local Docker and dev env docker-compose.yml files into one template file, used by the dockerfile role - added a 'sources' role to template out config files - the postgres data dir is no longer a bind-mount, it is a docker volume - the redis socket is not longer a bind-mount, it is a docker volume - the local_settings.py.docker-compose file no longer needs to be copied over in the dev env - Create tmp rsyslog.conf in rsyslog volume to avoid cross-linking. Previously, the tmp code-generated rsyslog.conf was being written to /tmp (by default). As a result, we were attempting to shutil.move() across volumes. - move k8s image build and push roles under tools/ansible - See tools/docker-compose/README.md for usage of these changes
* Upgrade PostgreSQL from 10 to 12Christian M. Adams2021-01-081-1/+1
|
* Small docs updatenixocio2021-01-051-1/+1
| | | | | | Small docs update. Fix broken link, and update node version used. See: https://github.com/ansible/awx/pull/8766/files
* Update from pip to pip3Elton de Souza2020-09-031-1/+1
|
* remove TCP ports for redis (it only listens on a unix domain socket)Ryan Petrello2020-06-091-1/+1
|
* remove memcache from everywhere and add djagno-redis to cover itRebeccah2020-06-091-1/+0
|
* Update some contributing docsMatthew Jones2020-04-081-5/+10
| | | | | | * Update the tools called in the dev environment * More RMQ purges from architecture docs * Remove the old clusterdev target
* remove a bunch of RabbitMQ referencesRyan Petrello2020-03-241-6/+5
|
* change the default port range for the sdb debugging toolRyan Petrello2019-09-131-1/+1
| | | | the current range conflicts w/ a port used by the pycharm editor
* Upgrade to postgres 10.6Christian Adams2019-09-121-1/+1
| | | | | | | - use awx-python in shebang in dev env - scl enable where needed for rhel7 & container installs - use scram-sha-256 pg user hashing by default - ensure psycopg2 is using the correct PG_CONFIG at build time for the right libpq version
* Update tooling and UI development documentation to cover I18NHideki Saito2019-07-311-0/+2
| | | | | | | - Document steps for adding I18N in builds - Add "clean-language" target to remove *.mo files Signed-off-by: Hideki Saito <saito@fgrep.org>
* update docs for development environmentJake McDermott2019-03-071-4/+2
|
* Clean up after yourselves, people!Shane McDonald2018-11-261-11/+11
|
* Add a note about `—force-with-lease` to contributing documentation.Shane McDonald2018-11-261-0/+1
|
* Rename schema job to be more clear about its purposeElijah DeLee2018-11-201-0/+17
| | | | | | The make target fails when it detects schema changes, not when schema is invalid. Also update CONTRIBUTING.md to include information about zuul jobs.
* replace celery task decorators with a kombu-based publisherRyan Petrello2018-10-111-2/+2
| | | | | | | | | | | | | | | | | | | this commit implements the bulk of `awx-manage run_dispatcher`, a new command that binds to RabbitMQ via kombu and balances messages across a pool of workers that are similar to celeryd workers in spirit. Specifically, this includes: - a new decorator, `awx.main.dispatch.task`, which can be used to decorate functions or classes so that they can be designated as "Tasks" - support for fanout/broadcast tasks (at this point in time, only `conf.Setting` memcached flushes use this functionality) - support for job reaping - support for success/failure hooks for job runs (i.e., `handle_work_success` and `handle_work_error`) - support for auto scaling worker pool that scale processes up and down on demand - minimal support for RPC, such as status checks and pool recycle/reload
* update node requirements in CONTRIBUTING.md to match INSTALL.mdBill Nottingham2018-10-101-2/+2
|
* Mention zuul in contributingMatthew Jones2018-10-051-1/+1
|
* CONTRIBUTING.md: Fixing ToC indendation and wrong linksYanis Guenane2018-08-281-7/+7
| | | | | | | | | | The Table of Contents list indentation was wrongly indented for 'Running the environment'. Also, some links pointed to anchor that did not exist. The commit fixes that. Signed-off-by: Yanis Guenane <yguenane@redhat.com>
* Fix issue with table of contents(links)Cristian Vargas2018-06-231-3/+3
| | | | Signed-off-by: Cristian Vargas <cristian@swapps.co>
* add instructions for generating Swagger/OpenAPI docsRyan Petrello2018-02-061-0/+15
|
* CentOS typo in CONTRIBUTING.mdKAMiKAZOW2018-01-311-1/+1
|
* added RDB info to docsadamscmRH2018-01-181-1/+1
|
* Fixed TyposadamscmRH2017-12-141-3/+3
|
* Fix markdown link in CONTRIBUTING for enhancements list.Tiago M. Vieira2017-09-281-1/+1
|
* Updating contributing for What should I work on?Matthew Jones2017-09-191-3/+2
|
* update code of conduct urlGreg DeKoenigsberg2017-09-081-1/+1
|
* Fix typo in contributing guideJulen Landa Alustiza2017-09-071-1/+1
| | | | Signed-off-by: Julen Landa Alustiza <julen@zokormazo.info>
* Contributing updates for clarityMatthew Jones2017-08-301-6/+2
|
* Updates CONTRIBUTING and READMEChris Houseknecht2017-08-301-192/+238
|
* Fix broken markdownJames Laska2017-08-221-2/+2
|
* Minor adjustments to CONTRIBUTING.mdJames Laska2017-08-221-3/+3
|
* Rewording AWS in contributor docMatthew Jones2017-08-111-2/+4
| | | | Add link to code of conduct
* Change to CONTRIBUTING.md after feedbackMatthew Jones2017-08-101-19/+62
| | | | This also adds a copy of the DCO
* Development documentation updatesMatthew Jones2017-08-091-0/+235
* Brand new CONTRIBUTING doc * Initial INSTALL doc * Update README with accurate details * Update UI README to purge Tower mentions * Updating setup.cfg to omit some directories that cause noise