From 46f556caf6d885e6f9e0c20384e03bfa8d654548 Mon Sep 17 00:00:00 2001 From: Andrej Karpathy Date: Thu, 25 Nov 2021 13:51:52 -0800 Subject: [PATCH] example makefile --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..64d3be4 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ + +# I run this to update the database with newest papers every day or so or etc. +up: + python arxiv_daemon.py --num 2000 + python compute.py + +# I use this to run the server +fun: + export FLASK_APP=serve.py; flask run