Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mihalykiss
/
IHCI_diet
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
IHCI_diet
/
run.sh
kissmihalyit
refactored code
ea3f136
about 2 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
199 Bytes
#!/bin/bash
if
[ ! -f .
env
];
then
cp
.env.example .
env
exit
1
fi
cd
rasa_app && rasa run --enable-api --cors
"*"
&
RASA_PID=$!
sleep
5
cd
.. && python app.py
trap
"kill
$RASA_PID
"
EXIT