v1 upload
First upload of project files
This commit is contained in:
commit
45ef778274
344 changed files with 6145 additions and 0 deletions
18
Frontend/patient_manager/server/server.sh
Normal file
18
Frontend/patient_manager/server/server.sh
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Define the port
|
||||
PORT=9000
|
||||
|
||||
# Check if the port is in use and release it if necessary.
|
||||
echo "Checking if port $PORT is in use..."
|
||||
if [ "$(lsof -t -i :$PORT)" ]; then
|
||||
echo "Port $PORT is in use. Stopping the process on that port..."
|
||||
fuser -k -n tcp $PORT
|
||||
fi
|
||||
|
||||
# Switch to the web construction directory
|
||||
cd /app/build/web/
|
||||
|
||||
# Start the web server on the specified port
|
||||
echo "Starting the server on port $PORT..."
|
||||
python3 -m http.server $PORT
|
||||
Loading…
Add table
Add a link
Reference in a new issue