Added client index.html and project.zsh entries.
parent
9dc39ace09
commit
d1747912fa
|
@ -0,0 +1,12 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<title>AuthD</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<meta charset="utf-8"/>
|
||||
<link rel="stylesheet" href="/style.css"/>
|
||||
</head>
|
||||
<body>
|
||||
<script src="/main.js"></script>
|
||||
</body>
|
||||
</html>
|
|
@ -7,4 +7,12 @@ type[authd]=crystal
|
|||
sources[authd]=src/main.cr
|
||||
depends[authd]="$(ls src/*.cr | grep -v '/main.cr$' | tr '\n' ' ')"
|
||||
|
||||
targets+=(client/main.js)
|
||||
type[client/main.js]=livescript
|
||||
sources[client/main.js]=client/index.ls
|
||||
depends[client/main.js]="$(ls client/*.ls | grep -v '/index.ls$' | tr '\n' ' ')"
|
||||
|
||||
targets+=(client/style.css)
|
||||
type[client/style.css]=sass
|
||||
sources[client/style.css]=client/style.sass
|
||||
|
||||
|
|
Loading…
Reference in New Issue