Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 570 Bytes

README.md

File metadata and controls

36 lines (24 loc) · 570 Bytes

submit-ce API

arXiv paper submission system

Installation & Usage

To run the server, please execute the following from the root directory:

# setup venv in your preferred way
python --version
# 3.11

pip install --no-deps -r requirements.txt
pip install --no-deps -r requirements-dev.txt

# make sqlite dev db
python test/make_test_db.py

python main.py

and open your browser at http://localhost:8000/docs/ to see the docs.

Build Docker Image

docker build . -t arxiv/submit_ce

Tests

To run the tests:

pytest tests