Google authentication for Scala

Check-in [9103f60ab2]
Login

Check-in [9103f60ab2]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:direnv(1) configuration (use nix / shell.nix).
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 9103f60ab2708755d6c9113638f49f11cb3ba87801cf52d2dcc661ae58383ce6
User & Date: tomas 2021-03-23 08:31:17
Context
2021-03-23
09:44
Upgrade to latest google api client. Scala 2.13 support. Upgrade -> Scala.js 1.5. Libraries/build upgrade. check-in: 0de6e6a507 user: tomas tags: trunk
08:31
direnv(1) configuration (use nix / shell.nix). check-in: 9103f60ab2 user: tomas tags: trunk
2020-09-22
09:51
gauth4s: 0.1 -> 0.2-SNAPSHOT check-in: b25b3dda9e user: tomas tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Added .envrc.



>
1
use nix

Changes to .fossil-settings/ignore-glob.

1
2
3
4
5
6
7
8
9

*~
.*.swp
target
lib_managed
tags
.idea
out
.idea_modules
example/jvm/resources/application.conf










>
1
2
3
4
5
6
7
8
9
10
*~
.*.swp
target
lib_managed
tags
.idea
out
.idea_modules
example/jvm/resources/application.conf
.direnv

Added shell.nix.















>
>
>
>
>
>
>
1
2
3
4
5
6
7
{ pkgs ? import <nixpkgs> {} }:

pkgs.mkShell {
  buildInputs = with pkgs; [
    openjdk8
  ];
}