From bf0ac1ebace243f31723050bde62a743e55813b1 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Fri, 16 Feb 2018 22:31:10 -0800 Subject: [PATCH] Move etiquette_repl into a folder for consistency. The items in the frontends folder should essentially be black boxes with a launch file. Now the repl one looks the same as the flask. --- README.md | 2 +- .../etiquette_repl_launch.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename frontends/{etiquette_repl.py => etiquette_repl/etiquette_repl_launch.py} (100%) diff --git a/README.md b/README.md index 6b66b3d..c0d14b0 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Documentation is still a work in progress. In general, - You must make the `etiquette` package importable by placing it in one of your lib paths because I have not made a setup.py yet. Rather than actually moving the folder I just use filesystem junctions. - Run `python etiquette_flask_launch.py [port]` to launch the flask server. Port defaults to 5000 if not provided. -- Run `python -i etiquette_repl.py` to launch the Python interpreter with the PhotoDB pre-loaded into a variable called `P`. Try things like `P.new_photo` or `P.digest_directory`. +- Run `python -i etiquette_repl_launch.py` to launch the Python interpreter with the PhotoDB pre-loaded into a variable called `P`. Try things like `P.new_photo` or `P.digest_directory`. ### Project stability diff --git a/frontends/etiquette_repl.py b/frontends/etiquette_repl/etiquette_repl_launch.py similarity index 100% rename from frontends/etiquette_repl.py rename to frontends/etiquette_repl/etiquette_repl_launch.py