mirror of
https://github.com/vishapoberon/vipak.git
synced 2026-04-05 20:42:26 +00:00
46 lines
995 B
Modula-2
46 lines
995 B
Modula-2
MODULE vpkSettings;
|
|
IMPORT Platform, Out;
|
|
CONST
|
|
vpkConfDir* = ".vipack";
|
|
vpkConfFile* = "vipackConf.json";
|
|
vpkTreeDir* = "vipackTree";
|
|
vpkPkgDir* = "vpkLocal";
|
|
vpkDepDir* = "deps";
|
|
vpkBldDir* = "build";
|
|
|
|
graphName* = "deps.dot";
|
|
|
|
rmtType* = "Remote";
|
|
rmtTypKey* = "type";
|
|
rmtTypGitVal* = "git";
|
|
rmtTypHttpVal* = "http";
|
|
rmtTypHttpsVal* = "https";
|
|
rmtTypGemiVal* = "gemini";
|
|
rmtTreeKey* = "path";
|
|
bldType* = "Build";
|
|
(*defTreeVal* = "https://github.com/vishaps/vipackTree";*)
|
|
defTreeVal* = "git@github.com:vishaps/vipackTree";
|
|
confTreeVal* = defTreeVal;
|
|
defTypVal* = rmtTypGitVal;
|
|
|
|
pkgTypKey* = "Package";
|
|
depTypKey* = "Dependencies";
|
|
|
|
packageFileName* = "VersionFile.json";
|
|
host* = "localhost";
|
|
port* = "80";
|
|
|
|
http* = 0;
|
|
https* = 1;
|
|
gemini* = 2;
|
|
git* = 3;
|
|
unkn* = -1;
|
|
TYPE
|
|
tree* = RECORD
|
|
url* : ARRAY 128 OF CHAR;
|
|
typ* : SHORTINT
|
|
END;
|
|
|
|
|
|
|
|
END vpkSettings.
|