From 2512fc856ff52316b81d86aa356a8e3643c187c9 Mon Sep 17 00:00:00 2001 From: Vitaly Davydov Date: Tue, 30 May 2023 17:14:41 +0300 Subject: [PATCH 1/2] Added .deps filter in .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 7ab2e85..ff5e881 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ regression.out regression.diffs tags buildpod +.deps From afa256ab97699b2765de3ea7ae7c1639508118a4 Mon Sep 17 00:00:00 2001 From: Vitaly Davydov Date: Tue, 30 May 2023 17:45:47 +0300 Subject: [PATCH 2/2] Added CONTRIBUTING.md --- CONTRIBUTING.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..d418258 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,20 @@ +First off, thanks for taking the time to contribute! ❤️ + +All types of contributions are encouraged and valued. See the Table of Contents for different ways to help and details about how this project handles them. Please make sure to read the relevant section before making your contribution. It will make it a lot easier for us maintainers and smooth out the experience for all involved. The community looks forward to your contributions. + +# Table of Contents +- [Project Scope](#project-scope) +- [Development Plans](#development-plans) + +# Project Scope +- Types. +- Operations on types (creating, searching, sorting, set operations and others). +- Indexing structures and algorithms. + +# Development Plans +- Move all source files into src folder. +- Implement optional compilation with HEALPIX and SMOC. +- Use pgindent to format sources. +- Check compilation with newest postgrespro versions. +- Add more tests including performance tests. +- Add more documentation.