10 lines
213 B
Makefile
10 lines
213 B
Makefile
|
|
# 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
|