AQUA-to-ARTEMiS/README.md

46 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

2023-04-16 21:22:27 +00:00
# AQUA-to-ARTEMiS
2023-10-28 22:14:24 +00:00
Imports AQUAs db.sqlite or MySQL database into ARTEMiS, currently WIP
## Requirements
2023-04-16 21:42:04 +00:00
Already have [ARTEMiS](https://gitea.tendokyu.moe/Hay1tsme/artemis) installed and created the database with
```sh
python dbutils.py create
```
**The `aqua_importer.py` script will read the settings from your specified ARTEMiS `config/` folder!**
## Instructions
Place `aqua_importer.py` in your ARTEMiS directory and execute it:
```sh
2023-10-28 22:14:24 +00:00
python aqua_importer.py "C:\path\to\aqua"
```
2023-04-16 21:42:04 +00:00
**CAN OVERWRITE ALREADY EXISTING GAMES DATA! BE WARNED!!**
## How to use
```
2023-10-28 22:14:24 +00:00
usage: aqua_importer.py [-h] [--config CONFIG] aqua_data_path
2023-04-16 21:42:04 +00:00
AQUA to ARTEMiS
positional arguments:
2023-10-28 22:14:24 +00:00
aqua_data_path Absolute folder path to AQUA folder, where application.properties is located in.
2023-04-16 21:42:04 +00:00
options:
-h, --help show this help message and exit
--config CONFIG, -c CONFIG
Config directory to use
```
## TODO
- [x] CHUNITHM SUN
- [x] O.N.G.E.K.I. Bright Memory
2023-10-28 22:14:24 +00:00
- [x] maimai DX FESTiVAL
- [ ] Change the game version to import using arguments
- [ ] Code clean up/optimizations