Skip to content
Snippets Groups Projects
Commit ac87eca9 authored by mjbonifa's avatar mjbonifa
Browse files

not dumped all database tables to file on export so they can be versioned

parent aa86013b
No related branches found
No related tags found
No related merge requests found
......@@ -173,7 +173,14 @@ def init(phen_dir, remote_url):
config_path = phen_path / CONFIG_FILE
with open(config_path, "w", encoding="utf-8") as f:
json.dump(config, f, indent=4)
# TODO: add gitignore
# Ignore all SQLite database files
#*.db
#*.sqlite
#*.sqlite3
# add to git repo and commit
for d in DEFAULT_PHEN_DIR_LIST:
repo.git.add(phen_path / d)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment