A Python Flask server that converts Excel files into SBOL and uploads it into SBH and FJ
May have to edit dockerfile line 2 to clarify the platform on which you are running. (--platform=...)
Currently in a template-based design.
Go to main directory:
cd SynBioSuite_Server
Build the image:
docker build -t sbs_server .
Run the image:
docker run -p 5003:5000 sbs_server
The server will be running on localhost:5003
This package requires Python 3.9.20 (other version create dependency issues). Use the package manager pip to install excel2sbol, excel2flapjack, flask, and flask-cors.
pip install excel2sbol
pip install excel2flapjack
pip install flask
pip install flask-cors
In your command line, you can start up the server using the following command
flask --app views.py run