19 lines
746 B
Python
19 lines
746 B
Python
#!/usr/env/bin python3
|
|
import subprocess
|
|
|
|
from django.core.management.base import BaseCommand
|
|
from django.core.management import call_command
|
|
|
|
class Command(BaseCommand):
|
|
"""
|
|
Command for importing the database of NK15.
|
|
Need to be run by a user with a registered role in postgres for the database nk15.
|
|
"""
|
|
|
|
def handle(self, *args, **kwargs):
|
|
subprocess.call("./apps/scripts/shell/tabularasa")
|
|
call_command('import_account', alias=True, chunk=5000, save = "map.json")
|
|
call_command('import_activities', chunk=5000, map="map.json")
|
|
call_command('import_transaction', chunk=5000, buttons=True, map="map.json")
|
|
call_command('make_su','-sS', 'Coq', 'erdnaxe', 'PAC', 'Pollion', 'ÿnérant')
|