generated from phundrak/rust-poem-openapi-template
Lucien Cartier-Tilet
d9e29b62b7
This commit separates the core features of géjdr from the backend as these will also be used by the bot in the future. This commit also updates the dependencies of the project. It also removes the dependency lettre as well as the mailpit docker service for developers as it appears clearer this project won’t send emails anytime soon. The publication of a docker image is also postponed until later.
15 lines
931 B
EmacsLisp
15 lines
931 B
EmacsLisp
;;; Directory Local Variables -*- no-byte-compile: t -*-
|
|
;;; For more information see (info "(emacs) Directory Variables")
|
|
|
|
((rustic-mode . ((fill-column . 80)))
|
|
(sql-mode . ((eval . (progn
|
|
(setq-local lsp-sqls-connections
|
|
`(((driver . "postgresql")
|
|
(dataSourceName \,
|
|
(format "host=%s port=%s user=%s password=%s dbname=%s sslmode=disable"
|
|
(getenv "DB_HOST")
|
|
(getenv "DB_PORT")
|
|
(getenv "DB_USER")
|
|
(getenv "DB_PASSWORD")
|
|
(getenv "DB_NAME")))))))))))
|