initial commit

This commit is contained in:
FinalWombat
2023-05-05 00:50:02 +03:00
commit 6d93b041c5
232 changed files with 39974 additions and 0 deletions

26
install.bat Normal file
View File

@@ -0,0 +1,26 @@
@echo off
REM create a virtual environment
python -m venv talemate_env
REM activate the virtual environment
call talemate_env\Scripts\activate
REM install poetry
pip install poetry
REM use poetry to install dependencies
poetry install
REM copy config.example.yaml to config.yaml only if config.yaml doesn't exist
IF NOT EXIST config.yaml copy config.example.yaml config.yaml
REM navigate to the frontend directory
cd talemate_frontend
npm install
REM return to the root directory
cd ..
echo Installation completed successfully.
pause