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 6bcbef4280
Moved logic to jeeves.core
2019-10-03 13:01:21 +02:00
jeeves Moved logic to jeeves.core 2019-10-03 13:01:21 +02:00
.env.example Fixed JEEVES_DEBUG in .env.example 2019-09-25 19:42:28 +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
Dockerfile Added docker-compose 2019-09-30 17:52:23 +02:00
Makefile Initial proof of concept 2019-09-23 23:11:26 +02:00
README.md Updated README 2019-09-30 18:45:13 +02:00
docker-compose.yml Load .env on docker services 2019-09-30 18:45:00 +02:00
manage.py Formatting 2019-09-29 14:30:45 +02:00
poetry.lock Basic async 2019-09-30 18:13:37 +02:00
pyproject.toml Moved logic to jeeves.core 2019-10-03 13:01:21 +02:00
setup.cfg Moved logic to jeeves.core 2019-10-03 13:01:21 +02:00

README.md

Jeeves

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

Python 3.7+

Contributing

Running locally

A docker-compose file is prepared if you want to run the project effortlessly, just make sure you have it updated and run:

docker-compose run --rm backend make quicksetup
docker-compose up -d

The webserver will be running on port 8000 by default.

Accessing the web interface

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

The provided frontend is available at http://localhost:8000/dashboard.

Running the test suite

To run the test suite:

DJANGO_SETTINGS_MODULE=jeeves.settings pytest .