You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Go to file
John Krauss bcbd8a2be4
change OBS_GetLegacyMetadata to return median/average measures too when called for polygons
8 years ago
.github update NEWS.md and PULL_REQUEST_TEMPLATE.md 8 years ago
doc missed tool 8 years ago
release Release 1.3.0 artifact 8 years ago
scripts full testing suite for obs_getdata and obs_getmeta 8 years ago
src change OBS_GetLegacyMetadata to return median/average measures too when called for polygons 8 years ago
.gitignore first-pass automatic testing 8 years ago
CONTRIBUTING.md Some small readability improvements 9 years ago
LICENSE Initial commit with what I think we need 9 years ago
Makefile remove plpython and python code for now. also removed mistaken installation of postgres_fdw in tests 8 years ago
Makefile.global Initial commit with what I think we need 9 years ago
NEWS.md change OBS_GetLegacyMetadata to return median/average measures too when called for polygons 8 years ago
README.md Fix relative links in markdown 9 years ago
RELEASE.md Remove paragraph from RELEASE.md doc 8 years ago

README.md

Observatory extension

CartoDB extension that implements the row-level functions needed by the Observatory Service.

Code organization

.
├── doc     # documentation
├── release # released versions
└── src     # source code
    └── pg
        ├── sql
        └── test
            ├── expected
            ├── fixtures
            └── sql

Development workflow

We distinguish two roles regarding the development cycle:

  • developers will implement new functionality and bugfixes into the codebase and will request for new releases of the extension.
  • A release manager will attend these requests and will handle the release process. The release process is sequential: no concurrent releases will ever be in the works.

We use the default develop branch as the basis for development. The master branch is used to merge and tag releases to be deployed in production.

Developers shall create a new topic branch from develop for any new feature or bugfix and commit their changes to it and eventually merge back into the develop branch. When a new release is required a Pull Request will be open against the develop branch.

The develop pull requests will be handled by the release manage, who will merge into master where new releases are prepared and tagged. The master branch is the sole responsibility of the release masters and developers must not commit or merge into it.

Development Guidelines

For a detailed description of the development process please see the CONTRIBUTING.md guide.

Any modification to the source code shall always be done in a topic branch created from the develop branch.

Tests, documentation and peer code reviews are required for all modifications.

The tests are executed by running this from the top directory:

sudo make install
make test

Release

The release and deployment process is described in the RELEASE.md guide and it is the responsibility of the designated release manager.