--- Dev Notes for actual express seeding backend --- content of this directory is intended to populate Mongo DB with vocabulary, sentences, kanji and reading data there is shell wrapper that calls all other JS seeding scripts. Production JSON data resides in: json_data/ kanji/ reading/ // ---------------------- express BE streamlining -------------------------- // it is static, streamlining is not priority // ---------------------- flask BE streamlining -------------------------- // critical to streamline the flask user based codebase needs to use username userid keys at every call security implementation is not part of this sprint mock mongo container with persistent data: docker run -it -v ~/user_db:/data/db -p 27017:27017 --rm --name mongodb_flask mongo docker start mongodb_flask docker stop mongodb_flask