1
Fork 0

add e11sync-uwsgi

This commit is contained in:
Motiejus Jakštys 2024-01-13 17:00:02 +02:00
parent 81988555d2
commit c291c5e0c9
1 changed files with 51 additions and 23 deletions

View File

@ -31,15 +31,26 @@
}:
flake-utils.lib.eachDefaultSystem (system: let
pkgs = import nixpkgs {inherit system;};
devDeps = with pkgs; [
python3Packages.django_5
python3Packages.django-debug-toolbar
python3Packages.django-compressor
dart-sass
uwsgiPort = 8001;
uwsgi = pkgs.uwsgi.override {
plugins = ["python3"];
python3 = pkgs.python3;
};
appDeps = with pkgs; [
python3Packages.django_5
python3Packages.django-compressor
];
runtimeDeps = with pkgs;
[
python3Packages.geoip2
libmaxminddb
];
]
++ appDeps;
buildDeps = [pkgs.dart-sass] ++ appDeps;
debugDeps = [pkgs.python3Packages.django-debug-toolbar] ++ runtimeDeps;
geoip = pkgs.stdenv.mkDerivation {
name = "geoip";
srcs = [geoip2-asn geoip2-city geoip2-country];
@ -55,12 +66,7 @@
packages.e11sync-static = pkgs.stdenv.mkDerivation {
name = "e11sync-static";
src = self;
nativeBuildInputs = with pkgs; [
python3Packages.django_5
python3Packages.django-compressor
dart-sass
python3
];
nativeBuildInputs = buildDeps;
buildPhase = ''
mkdir -p $out/static
export E11SYNC_STATIC_ROOT=$out/static
@ -74,11 +80,33 @@
"${pkgs.zopfli}/bin/zopfli {} && ${pkgs.brotli}/bin/brotli {}"
'';
};
packages.e11sync-uwsgi = pkgs.stdenv.mkDerivation {
name = "e11sync-uwsgi";
propagatedBuildInputs = [runtimeDeps];
nativeBuildInputs = [pkgs.makeWrapper];
src = self;
dontUnpack = true;
buildPhase = ''
mkdir -p $out;
cp -r ${self}/app $out
makeWrapper ${uwsgi}/bin/uwsgi $out/bin/entrypoint-uwsgi \
--add-flags '\
--chdir='"$out"'/app \
--module=e11sync.wsgi:application \
--master \
--http-socket=127.0.0.1:${toString uwsgiPort} \
--processes=5 \
--harakiri=20 \
--max-requests=10000 \
--vacuum'
'';
};
devShells.default = pkgs.mkShellNoCC {
LOCALE_ARCHIVE = "${pkgs.glibcLocales}/lib/locale/locale-archive";
GEOIP_PATH = "${geoip}";
E11SYNC_DEBUG = "1";
packages = devDeps;
packages = debugDeps;
};
formatter = pkgs.alejandra;