https://github.com/slaclab/coact-api
SLAC's Scientific User and Resource Management System
https://github.com/slaclab/coact-api
Last synced: 11 months ago
JSON representation
SLAC's Scientific User and Resource Management System
- Host: GitHub
- URL: https://github.com/slaclab/coact-api
- Owner: slaclab
- License: other
- Created: 2022-04-07T20:57:13.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-06-19T16:56:42.000Z (12 months ago)
- Last Synced: 2025-06-19T17:48:24.359Z (12 months ago)
- Language: Python
- Size: 700 KB
- Stars: 1
- Watchers: 9
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# new-iris
SLAC's Scientific User and Resource Management System
## initialisation
check out code
git clone https://github.com/slaclab/new-iris.git
option 1) create a new virtual env with
virtualenv new-iris
new-iris/bin/pip install -r new-iris/requirements.txt
cd new-iris
option 2) create a new conda environment
sh Miniconda3-latest-Linux-x86_64.sh -f -p new-iris/
cd new-iris
./bin/pip -r requirements.txt
install mongo
option 1) via conda with:
./bin/conda install mongodb
option 2) via yum etc.
and start it with
mkdir mongodb
./bin/mongod --config mongod.conf
then initiate the uvicorn server with
./bin/uvicorn main:app --reload
## testing
you can then go to http://localhost:8000/graphql to test the graphql interface and issue queries etc.