Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Gpdb | 5,972 | 6 hours ago | 420 | apache-2.0 | C | |||||
Greenplum Database - Massively Parallel PostgreSQL for Analytics. An open-source massively parallel data platform for analytics, machine learning and AI. | ||||||||||
Flask Admin | 5,465 | 2,309 | 97 | 20 days ago | 39 | February 20, 2023 | 490 | bsd-3-clause | Python | |
Simple and extensible administrative interface framework for Flask | ||||||||||
Sysbench | 5,290 | 3 months ago | 1 | February 27, 2018 | 168 | gpl-2.0 | C | |||
Scriptable database and system performance benchmark | ||||||||||
Lapis | 2,891 | a day ago | 156 | mit | MoonScript | |||||
A web framework for Lua and OpenResty written in MoonScript | ||||||||||
Marten | 2,453 | 31 | 64 | 2 days ago | 206 | July 23, 2023 | 104 | mit | C# | |
.NET Transactional Document DB and Event Store on PostgreSQL | ||||||||||
Jailer | 2,269 | 13 hours ago | 57 | July 04, 2022 | apache-2.0 | Java | ||||
Database Subsetting and Relational Data Browsing Tool. | ||||||||||
Fastapi Realworld Example App | 2,083 | a year ago | mit | Python | ||||||
Backend logic implementation for https://github.com/gothinkster/realworld with awesome FastAPI | ||||||||||
Apiauto | 1,782 | 16 days ago | 40 | apache-2.0 | JavaScript | |||||
☔ 敏捷开发最强大易用的 HTTP 接口工具,机器学习零代码测试、生成代码与静态检查、生成文档与光标悬浮注释,集 文档、测试、Mock、调试、管理 于一体的一站式体验。☔ The most advanced tool for HTTP API. Testing with machine learning, generating codes and static analysis, generating comments and floating hints, one site for document, testing, mocking, debugging and management. | ||||||||||
Pg Mem | 1,562 | 32 | 2 days ago | 128 | June 27, 2023 | 134 | mit | TypeScript | ||
An in memory postgres DB instance for your unit tests | ||||||||||
Liberapay.com | 1,473 | 13 hours ago | 478 | Python | ||||||
Source code of the recurrent donations platform Liberapay |
Template of a C++ service that uses userver framework with PostgreSQL.
To create your own userver-based service follow the following steps:
git clone your-service-repo && cd your-service-repo
find . -not -path "./third_party/*" -not -path ".git/*" -not -path './build_*' -type f | xargs sed -i 's/pg_service_template/YOUR_SERVICE_NAME/g'
).Makefile contains typicaly useful targets for development:
make build-debug
- debug build of the service with all the assertions and sanitizers enabledmake build-release
- release build of the service with LTOmake test-debug
- does a make build-debug
and runs all the tests on the resultmake test-release
- does a make build-release
and runs all the tests on the resultmake service-start-debug
- builds the service in debug mode and starts itmake service-start-release
- builds the service in release mode and starts itmake
or make all
- builds and runs all the tests in release and debug modesmake format
- autoformat all the C++ and Python sourcesmake clean-
- cleans the object filesmake dist-clean
- clean all, including the CMake cached configurationsmake install
- does a make build-release
and runs install in directory set in environment PREFIX
make install-debug
- does a make build-debug
and runs install in directory set in environment PREFIX
make docker-COMMAND
- run make COMMAND
in docker environmentmake docker-build-debug
- debug build of the service with all the assertions and sanitizers enabled in docker environmentmake docker-test-debug
- does a make build-debug
and runs all the tests on the result in docker environmentmake docker-start-service-release
- does a make install-release
and runs service in docker environmentmake docker-start-service-debug
- does a make install-debug
and runs service in docker environmentmake docker-clean-data
- stop docker containers and clean database dataEdit Makefile.local
to change the default configuration and build options.
The original template is distributed under the Apache-2.0 License and CLA. Services based on the template may change the license and CLA.