-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.janet
More file actions
24 lines (21 loc) · 867 Bytes
/
project.janet
File metadata and controls
24 lines (21 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
(declare-project
:name "pullups"
:description ""
:dependencies ["https://github.com/joy-framework/joy"
"https://github.com/janet-lang/json"
"https://github.com/dghaehre/janet-utils"
{:url "https://github.com/ianthehenry/judge.git" :tag "v2.4.0"}
{:repo "https://github.com/brandonchartier/janet-uuid" :tag "b831d1bfb94d6400e8bf8c6cc60628159b218064"}
{:repo "https://github.com/joy-framework/cipher" :tag "56e3770f3324f5c58073afbb85ecb103bab8f9f8"}
"https://github.com/janet-lang/sqlite3"]
:author ""
:license ""
:url ""
:repo "")
(phony "dev" []
(os/shell "find . -name '*.janet' | entr -r -s \"janet ./src/main.janet\""))
(phony "server" []
(os/shell "janet ./src/main.janet"))
(declare-executable
:name "app"
:entry "./src/main.janet")