Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Create a virtual environment, then:

```shell
(venv) $ pip install -r requirements.txt
(venv) $ python python -m build -n --wheel
(venv) $ python -m build -n --wheel
```

If you intend to run the testsuite or work on the code, then also install the requirements from `requirements.dev.txt`. You can run the testsuite using
Expand Down
3 changes: 1 addition & 2 deletions src/mrmat_python_api_fastapi/apis/platform/v1/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

import uuid
from sqlalchemy import ForeignKey, String, UniqueConstraint, UUID
from sqlalchemy import ForeignKey, String, UniqueConstraint
from sqlalchemy.orm import relationship, Mapped, mapped_column

from mrmat_python_api_fastapi import ORMBase
Expand Down
2 changes: 1 addition & 1 deletion var/helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ route:
namespace: edge

config:
db_url: "sqlite:///data/db.sqlite"
db_url: "sqlite:///"
Loading