Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
FadyCoding committed Jul 1, 2024
1 parent 64f167d commit 30685c9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion backend/websrv.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def send_frontend(path):
return response
except (requests.exceptions.ConnectionError, requests.exceptions.Timeout):
return (
"You are in a development environment and the DebAI frontend"
"You are in a development environment and the DebiAI frontend"
+ "is not available at the url : "
+ DEV_FRONTEND_URL,
503,
Expand Down
4 changes: 4 additions & 0 deletions build_and_run.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
#!/bin/bash

# Remove previous build and dist directories
rm -rf build dist backend.egg-info

# Generated source distribution and wheel distribution
python3 setup.py sdist bdist_wheel

# Install the package
pip install .

# Run the package
debiai-start

0 comments on commit 30685c9

Please sign in to comment.