Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
hluk committed Nov 18, 2022
1 parent c095a01 commit b810763
Show file tree
Hide file tree
Showing 4 changed files with 199 additions and 304 deletions.
4 changes: 1 addition & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# Please see the documentation for all configuration options:
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

---
version: 2
updates:
- package-ecosystem: "pip"
Expand Down
16 changes: 4 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,6 @@ documentation can be found at <http://docs.resultsdb20.apiary.io/>.

## Quick development setup

First, clone the repository.

Then, setup a virtual environment for development:

$ sudo dnf install python-virtualenv python-pip
$ virtualenv --system-site-packages env_resultsdb
$ source env_resultsdb/bin/activate
$ pip install -r requirements.txt

If you encounter any installation issues, it's possible that you don't have
`gcc` and necessary C development headers installed to compile C extensions
from PyPI. Either install those based on the error messages, or install
Expand All @@ -31,15 +22,16 @@ learn how.

Install the project:

$ python setup.py develop
$ poetry run python -m ensurepip --upgrade
$ poetry install

Initialize your database:

$ DEV=true ./init_db.sh
$ DEV=true poetry run ./init_db.sh

Run the server:

$ DEV=true python runapp.py
$ DEV=true poetry run python runapp.py

The server is now running with a very simple frontend at <http://localhost:5001>.
API calls can be sent to <http://localhost:5001/api/v2.0>. All data is stored
Expand Down

0 comments on commit b810763

Please sign in to comment.