mkdir -p romm_mock/library/roms/switch
touch romm_mock/library/roms/switch/metroid.xci
mkdir -p romm_mock/resources
touch romm_mock/config.yml
cp env.template .env
You'll need poetry installed
https://python-poetry.org/docs/#installing-with-the-official-installer
Then initialize the virtual environment and install the dependencies
poetry shell
# Fix disable parallel installation stuck: $> poetry config experimental.new-installer false
# Fix Loading macOS/linux stuck: $> export PYTHON_KEYRING_BACKEND=keyring.backends.null.Keyring
# Fix mariadb install on linux: $> sudo apt install libmariadb3 libmariadb-dev
# Fix mariadb connector/c >= 3.3.1: https://mariadb.com/docs/skysql-previous-release/connect/programming-languages/c/install/#Installation_via_Package_Repository_(Linux)
poetry install
docker-compose up -d
*Migrations will be run automatically when running the backend.
cd backend
python main.py
cd backend
python worker.py
cd frontend
# npm version >= 9 needed
npm install
mkdir assets/romm
ln -s ../../../romm_mock/library assets/romm/library
ln -s ../../../romm_mock/resources assets/romm/resources
npm run dev
docker exec -i mariadb mysql -u root -p<root password> < backend/romm_test/setup.sql # for amd images
docker exec -i mariadb mariadb -u root -p<root password> < backend/romm_test/setup.sql # for arm images
*Migrations will be run automatically when running the tests.
cd backend
# path or test file can be passed as argument to test only a subset
pytest [path/file]