-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleanup removing legacy scala.js libs and authentication code
- Loading branch information
Showing
21 changed files
with
37 additions
and
247 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
inputs = { | ||
typelevel-nix.url = "github:typelevel/typelevel-nix"; | ||
nixpkgs.follows = "typelevel-nix/nixpkgs"; | ||
flake-utils.follows = "typelevel-nix/flake-utils"; | ||
}; | ||
|
||
outputs = { self, nixpkgs, flake-utils, typelevel-nix }: | ||
flake-utils.lib.eachDefaultSystem (system: | ||
let | ||
pkgs-x86_64 = import nixpkgs { | ||
system = "x86_64-darwin"; | ||
}; | ||
scala-cli-overlay = final: prev: { | ||
scala-cli = pkgs-x86_64.scala-cli; | ||
}; | ||
pkgs = import nixpkgs { | ||
inherit system; | ||
overlays = [ typelevel-nix.overlay scala-cli-overlay]; | ||
}; | ||
in | ||
{ | ||
devShell = pkgs.devshell.mkShell { | ||
imports = [ typelevel-nix.typelevelShell ]; | ||
packages = [ | ||
pkgs.nodePackages.vscode-langservers-extracted | ||
pkgs.nodePackages.prettier | ||
pkgs.websocat | ||
]; | ||
typelevelShell = { | ||
nodejs.enable = true; | ||
jdk.package = pkgs.jdk17; | ||
}; | ||
}; | ||
} | ||
); | ||
} |
30 changes: 0 additions & 30 deletions
30
modules/model/shared/src/main/scala/navigate/model/security/package.scala
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
128 changes: 0 additions & 128 deletions
128
...eb/server/src/main/scala/navigate/web/server/security/FreeLDAPAuthenticationService.scala
This file was deleted.
Oops, something went wrong.
89 changes: 0 additions & 89 deletions
89
modules/web/server/src/main/scala/navigate/web/server/security/LdapConnectionOps.scala
This file was deleted.
Oops, something went wrong.