Skip to content

Commit

Permalink
fix(repo): rename to vease
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienChampagnol committed Oct 29, 2024
1 parent b2b01c1 commit 3664ef7
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ __pycache__
.vscode
uploads
schemas.json
geodeapp_back.egg-info
vease_back.egg-info
lock
time
build
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ RUN apt-get update && apt-get install -y wget

ENV GEODE_LICENSE_LOCATION=/server/geode.lic

CMD "geodeapp_server"
CMD "vease_server"

EXPOSE 5000
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# GeodeApp-Back
# Vease-Back
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"


[project]
name = "geodeapp_back"
name = "vease_back"
version = "0.4.1"
dynamic = ["dependencies"]
authors = [
Expand All @@ -20,11 +20,11 @@ classifiers = [
]

[project.urls]
"Homepage" = "https://github.com/Geode-solutions/geodeapp-back"
"Bug Tracker" = "https://github.com/Geode-solutions/geodeapp-back/issues"
"Homepage" = "https://github.com/Geode-solutions/Vease-back"
"Bug Tracker" = "https://github.com/Geode-solutions/Vease-back/issues"

[project.scripts]
geodeapp_back = "geodeapp_back.app:run_server"
vease_back = "vease_back.app:run_server"

[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
Expand Down
2 changes: 1 addition & 1 deletion src/tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import pytest
from src.geodeapp_back.app import app
from src.vease_back.app import app


@pytest.fixture
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/geodeapp_back/app.py → src/vease_back/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def root():
return flask.make_response({}, 200)

def run_server():
parser = argparse.ArgumentParser(prog='GeodeApp-Back', description='Backend server for GeodeApp')
parser = argparse.ArgumentParser(prog='Vease-Back', description='Backend server for Vease')
parser.add_argument('--host', type=str, default=DEFAULT_HOST, help='Host to run on')
parser.add_argument('-p', '--port', type=int, default=DEFAULT_PORT, help='Port to listen on')
parser.add_argument('-d', '--debug', default=FLASK_DEBUG, help='Whether to run in debug mode', action='store_true')
Expand Down

0 comments on commit 3664ef7

Please sign in to comment.