fmartingr
/
jeeves
Archived
1
0
Fork 0
This repository has been archived on 2021-02-14. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Felipe Martin d96eed1cae
Initial proof of concept
2019-09-23 23:11:26 +02:00
jeeves Initial proof of concept 2019-09-23 23:11:26 +02:00
.env.example Initial django project 2019-09-23 20:19:12 +02:00
.gitignore Initial django project 2019-09-23 20:19:12 +02:00
.pre-commit-config.yaml Initial proof of concept 2019-09-23 23:11:26 +02:00
Makefile Initial proof of concept 2019-09-23 23:11:26 +02:00
README.md Initial proof of concept 2019-09-23 23:11:26 +02:00
manage.py Initial django project 2019-09-23 20:19:12 +02:00
poetry.lock Initial proof of concept 2019-09-23 23:11:26 +02:00
pyproject.toml Initial proof of concept 2019-09-23 23:11:26 +02:00
setup.cfg Initial proof of concept 2019-09-23 23:11:26 +02:00

README.md

jeeves

Jeeves will take care of your boring tasks so you don't have to worry.

Python 3.7+

Contributing

You need poetry to manage this project dependencies. Go to the provided link to get more information.

Running this will use poetry to generate a virtualenv, install all required dependencies and initialize a database with an admin user.

make quicksetup

To run the webserver run this and then access http://localhost:8000/admin with credentials admin/Qwer1234

poetry run python manage.py runserver

To run the test suite:

DJANGO_SETTINGS_MODULE=jeeves.settings pytest .