Commit Graph

198 Commits

Author SHA1 Message Date
shivaraj-bh
423b85482d refactor(deprecation): replace types.string with types.str
see https://github.com/NixOS/nixpkgs/pull/66346
2024-03-29 21:20:23 +05:30
shivaraj-bh
ecc409436c chore(postgres): default value for listen_addresses is already localhost
This is true after https://github.com/juspay/services-flake/pull/160
2024-03-27 12:43:35 +05:30
Shivaraj B H
18d5c1d168
fix(postgres): empty socketDir by default (#160)
resolves #139 

> empty `unix_socket_directories` means not listening on any Unix-domain sockets, in which case only TCP/IP sockets can be used to connect to the server.

see: https://www.postgresql.org/docs/current/runtime-config-connection.html#GUC-UNIX-SOCKET-DIRECTORIES

* use TCP/IP by default for health check
2024-03-26 18:44:11 +05:30
Sridhar Ratnakumar
3090d6f489
ci: Upgrade to new nixci 2024-03-25 10:25:19 -04:00
Shivaraj B H
f8110887f1
docs(mysql): init (#157) 2024-03-21 15:04:28 +05:30
shivaraj-bh
fd961ce2aa docs: redis-cluster is folgezettel child of redis service 2024-03-21 08:31:19 +05:30
Shivaraj B H
e706d9301c
docs: create placeholders (#156) 2024-03-21 00:27:36 +05:30
Shivaraj B H
819ab20e8e
refactor: writeShellScriptBin -> writeShellApplication (#155)
Provides us with following benefits:
- use `runtimeInputs` instead of manually exporting `PATH`
- get shellcheck by default

---------

Co-authored-by: Sridhar Ratnakumar <3998+srid@users.noreply.github.com>
2024-03-19 01:47:25 +05:30
Shivaraj B H
f158353b59
fix(mysql)!: look for *.sql files in the top-level schema directory (#154)
* mysql service would assume that all the `*.sql` files in the directory, provided by `initialDatabases [{ schema = <directory>; … }]`, exists in a folder named [mysql-databases](291e7be83a/nix/mysql.nix (L239-L241)), after this change it would just look for all the `*.sql` files in the top-level schema directory.
* add tests
2024-03-18 22:32:08 +05:30
Sridhar Ratnakumar
291e7be83a chore(docs): Put pgAdmin under postgresql and link 2024-03-13 08:25:38 -04:00
Sridhar Ratnakumar
c7d48bbc87 chore(doc): Slugs must be flat
Should be:
- http://127.0.0.1:5566/services-flake/datadir

Not:
- http://127.0.0.1:5566/services-flake/guide/datadir
2024-03-13 08:01:41 -04:00
Sridhar Ratnakumar
67ac470c2d chore(docs): Fix a few things about docs 2024-03-13 07:58:17 -04:00
Shivaraj B H
67b4741f7b
docs: (readme) link to datadir doc from cfp; (index) add guide (#150)
- `Guide` page is not a child of `services-flake` in
<https://community.flake.parts> page:

<img width="288" alt="Screenshot 2024-03-13 at 3 54 20 PM"
src="https://github.com/juspay/services-flake/assets/23645788/58f31702-ac4b-4338-83eb-e7a69c1ea705">


- Link to a more detailed datadir documentation in README
2024-03-13 16:05:01 +05:30
Sridhar Ratnakumar
7e2e1fa909
chore(docs): Use cfp module (#149)
This enables us to preview the whole community.flake.parts (live server
or static site) in the context of the local docs (./doc).

Uses https://github.com/flake-parts/community.flake.parts/pull/52
2024-03-12 19:33:56 -04:00
Sridhar Ratnakumar
05df48dcbf
readme: Correction of noun 2024-03-12 19:05:49 -04:00
Shivaraj B H
0db2423f20
docs(postgres): init; specify unix-domain socket length limitation (#147)
Co-authored-by: Sridhar Ratnakumar <3998+srid@users.noreply.github.com>
2024-03-13 00:56:57 +05:30
Shivaraj B H
18f9decf13
refactor(postgres): replace string argument with attrset for connectionURI (#146)
for justification, see:
https://github.com/juspay/services-flake/pull/143#discussion_r1521290361
2024-03-13 00:40:13 +05:30
Shivaraj B H
fb48b6b612
docs(guide): dataDir init; unix-domain socket length limitation (#144)
---------

Co-authored-by: Sridhar Ratnakumar <3998+srid@users.noreply.github.com>
2024-03-12 22:35:35 +05:30
Shivaraj B H
8c25972cfb
feat(postgres): add connectionURI option (#143)
resolves #141
2024-03-12 14:24:28 +05:30
Shivaraj B H
62fe23fbef
refactor(example): remove unused pg2 service (#142)
resolves #140
2024-03-12 14:24:07 +05:30
Sridhar Ratnakumar
1c6e8fc867
fix(template): Was broken in previous PR merge 2024-03-11 14:24:25 -04:00
Sridhar Ratnakumar
705c2cc497
docs(readme): Add comparison table (#135) 2024-03-11 14:21:11 -04:00
Sridhar Ratnakumar
54ed8d27f8 chore(example): Change branch to 'main'
Since the PR is merged.
2024-03-11 14:06:23 -04:00
Shivaraj B H
51ecb71351
docs(example): add share-services example (#137)
Adds a 2nd example demonstrating how to share services between flakes.

Also move the current example to `./example/simple`.
2024-03-11 14:05:30 -04:00
Sridhar Ratnakumar
218fa6cc9a docs: keep readme intro in sync with index.md 2024-03-07 15:35:10 -05:00
Sridhar Ratnakumar
ead595bbfd docs: Fix broken link 2024-03-07 15:34:34 -05:00
Sridhar Ratnakumar
3e849aa744 test: refactor, by factoring 'pkgs' in its own module
We don't need per-file package overlays, since we don't envision having too many of them. Whenever possible, get them from nixpkgs, to keep our tests nimble.
2024-03-07 15:08:14 -05:00
Sridhar Ratnakumar
31151df8e4 test(grafana): Use older nixpkgs for grafana on macOS
This speeds up build, because we no longer have to compile grafana locally and wait for eternity.

cf. https://github.com/NixOS/nixpkgs/issues/273998
2024-03-07 15:08:14 -05:00
Sridhar Ratnakumar
5a54b621ab test: Apply overlay only on darwin
Other platforms need not unnecessarily build these packages
2024-03-07 15:08:14 -05:00
Sridhar Ratnakumar
c03d66eb44
chore(.envrc): Reload direnv when any relevant files change 2024-03-07 14:04:05 -05:00
Sridhar Ratnakumar
6c1e71c242 docs: Have canonical services list
Without todos or referencing Nix code in .md.
2024-03-07 13:58:11 -05:00
Sridhar Ratnakumar
acf4e9ad6e test(grafana): Link to upstream issue
https://github.com/NixOS/nixpkgs/issues/273998
2024-03-07 13:07:17 -05:00
Sridhar Ratnakumar
bcf4a493f8
test(pgadmin): Link to upstream bug (#129)
https://github.com/NixOS/nixpkgs/issues/281214
2024-03-07 11:45:45 -05:00
Shivaraj B H
1ae2579853
docs: add motivation for creating services-flake (#125)
resolves #124 and #123

---------

Co-authored-by: Sridhar Ratnakumar <3998+srid@users.noreply.github.com>
2024-03-07 22:10:16 +05:30
Sridhar Ratnakumar
708ae40e62 ci: Use cachix 2024-03-07 11:33:22 -05:00
Sridhar Ratnakumar
679abde41d docs: Fix nix shell command 2024-03-06 23:25:26 +05:30
shivaraj-bh
788ef28769 feat: add pre-commit-hooks.nix, enforcing conventional commits
enable treefmt and commitizen in pre-commit-hooks.nix

Along with this, we also:

* bump: update nixpkgs of dev flake for pre-commit-hooks.nix to work

the older version didn't have cljfmt
2024-03-06 22:29:38 +05:30
Abhishek Singh
e0a1074f8a
bump: update flake lock (#117)
* fix: pgadmin-init

in pgadmin-8.2, the command to setup configuration db is `setup-db`

* fix: add grafana overlay
grafana 10.3.3 from upstream nixpkgs doesn’t work in darwin

* chore: free up space in ubuntu-latest

---------

Co-authored-by: shivaraj-bh <sbh69840@gmail.com>
2024-03-06 16:55:00 +05:30
Shivaraj B H
9cdee29122
refactor: overlays for packages in test flake (#120)
Avoid test flake clutter; separate overlay for each package.
2024-03-06 08:06:25 +05:30
Sridhar Ratnakumar
b4275fc8bf ci: get rid of registries 2024-03-05 20:18:53 -05:00
Shivaraj B H
d9f8bf0211
add CHANGELOG.md (#119) 2024-03-06 06:38:00 +05:30
Shivaraj B H
d8b6d22c5c
use small-case x to mark a task as complete
With X, the final render is not a checkbox, but it is rendered as is.
2024-03-04 00:13:19 +05:30
Abhishek Singh
6aeb0eafe6
cassandra: init service (#116)
* cassandra: init service

* cassandra: add cassandra/conf files

* cassandra_test: change package to cassandra_4

* update readiness_probe

* update cassandra_test

* cassandra: add doc

* cassandra_4 doesn't require python-2

---------

Co-authored-by: shivaraj-bh <sbh69840@gmail.com>
2024-03-03 16:07:36 +05:30
Abhishek Singh
5e48c5a965
add pgAdmin service (#115) 2024-02-29 18:10:22 +05:30
Abhishek Singh
bdd6dde41a
add prometheus service (#114)
* prometheus: init service

* prometheus: add doc

* prometheus: update doc
2024-02-28 11:00:52 +05:30
Sridhar Ratnakumar
8d877fb488
ci: Add m1 runner to matrix (#89)
Co-authored-by: Shivaraj B H <sbh69840@gmail.com>
2024-02-27 09:30:41 -05:00
Shivaraj B H
65ebef12e5
clickhouse: fix test regression (#109) 2024-02-27 19:35:08 +05:30
shivaraj-bh
87ad31ec21 add contribuiting to index; set order of contributing to -9
contributing will appear after Getting started in the sidebar
2024-02-27 06:26:10 -05:00
Shivaraj B H
c0a1021f54
Development and contribution guidelines (#112)
---------

Co-authored-by: Sridhar Ratnakumar <srid@srid.ca>
Co-authored-by: Sridhar Ratnakumar <3998+srid@users.noreply.github.com>
2024-02-24 17:54:57 +05:30
Sridhar Ratnakumar
0787c48b02
Update process-compose-flake (#111)
To try the new JSON config, avoiding IFD.
2024-02-24 06:59:35 -05:00