about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMorgan Astra <m@morganastra.me>2016-08-09 21:30:46 -0700
committerMorgan Astra <m@morganastra.me>2016-08-09 21:30:46 -0700
commita228358111bbce6aa7c402a54fb9a39bff1aa924 (patch)
treee5e8aca9aac2accbf78c63e87d59de159e2fb45c
parente3c5f5d366af76cb39f2716455cb220abdc0bfae (diff)
update readme, add real site url to project.clj, remove obsolete doc comment from web.clj
-rw-r--r--README.md18
-rw-r--r--project.clj4
-rwxr-xr-xquickstart.sh5
-rw-r--r--src/pronouns/web.clj4
4 files changed, 10 insertions, 21 deletions
diff --git a/README.md b/README.md
index d061e39..900405d 100644
--- a/README.md
+++ b/README.md
@@ -33,20 +33,20 @@ Ctrl+q <tab>
 ### Running the app in a dev environment
 
 You can launch the app on your own computer by running the following
-commands:
+command:
 
 ```
-$ lein uberjar
-$ java -cp target/pronouns-standalone.jar clojure.main -m pronouns.web
+$ lein ring server
 ```
 
-Then browse to localhost:5000
+This will launch a server running the app and open your default web browser to the index page. The server will automatically reload files as you edit them.
 
-You can also just run quickstart.sh which will do all of these things for you. Do it like this to get an example running on port 666
+## Philosophy on pronoun inclusion
+
+Pronoun.is aims foremost and exclusively to be a useful resource for people to communicate the personal pronoun they use for themselves.
+
+It is possible to use these example sentences to demonstrate the usage of words that are not personal pronouns, or even cleverly insert an [entire story](http://pronoun.is/she/or%20they,%20those%20ships%20who%20were%20docked%20and%20still%20equipped%20with%20ancillaries,%20arranged%20to%20share%20the%20duty%20of%20monitoring%20our%20guest%20as%20it%20fit%20into%20their%20routines;%20that%20was%20the%20agreement,%20despite%20it%20being%20less%20convenient%20for%20me%20to%20participate%20at%20all,%20on%20the%20grounds%20that%20certain%20visitors%20might%20prefer%20a%20constant%20individual%20companion%20to%20what%20might%20seem,%20depending%20on%20their%20past%20experiences,%20to%20be%20undue%20attention%20from%20every%20soldier%20they%20passed.%20As%20usual,%20then,%20I%20took%20the%20first%20shift/the%20one%20possession%20of%20hers%20that%20Station%20Security%20hadn't%20confiscated,%20a/knowingly%20left%20with%20her.%20What%20a%20Presger%20frisbee%20might%20do%20or%20even%20look%20like%20I%20couldn't%20say.%20She%20hadn't%20seemed%20the%20sort%20to%20have%20alien%20technology,%20but,%20then%20again,%20neither%20had%20I/another%20unremarkable%20stranger,%20quite%20a%20ways%20down%20the%20concourse,%20who%20caught%20it%20with%20a%20degree%20of%20coordination%20that%20most%20would%20have%20overlooked.%20It%20did%20not%20escape%20my%20notice,%20however.%20"Cousin,"%20I%20said,%20enough%20to%20convey%20-%20unless%20our%20visitor%20were%20quite%20ignorant,%20but,%20of%20course,%20at%20this%20point%20I%20was%20certain%20that%20she%20couldn't%20be%20-%20both%20that%20I%20knew%20what%20she%20was%20not%20and%20that%20I%20was%20giving%20her%20the%20benefit%20of%20the%20doubt%20as%20to%20what,%20or%20who,%20she%20was)! However, as a policy we will not include such entries in the database.
 
-```
-$ ./quickstart.sh 666
-```
 
 ## License
-Copyright © 2014-2015 Morgan Astra <m@morganastra.me>
+Copyright © 2014-2016 Morgan Astra <m@morganastra.me>
diff --git a/project.clj b/project.clj
index 88084dc..ac5653d 100644
--- a/project.clj
+++ b/project.clj
@@ -1,8 +1,6 @@
 (defproject witch-house/pronouns "1.9.0-SNAPSHOT"
   :description "Pronoun.is is a web app for showing usage examples of personal pronouns in English."
-  :url "http://pronouns.herokuapp.com"
-  :license {:name "FIXME: choose"
-            :url "http://example.com/FIXME"}
+  :url "http://pronoun.is"
   :dependencies [[org.clojure/clojure "1.6.0"]
                  [compojure "1.1.8"]
                  [ring/ring-jetty-adapter "1.2.2"]
diff --git a/quickstart.sh b/quickstart.sh
deleted file mode 100755
index 8969778..0000000
--- a/quickstart.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-
-export PORT=6666
-lein uberjar
-java -cp target/pronouns-standalone.jar clojure.main -m pronouns.web
diff --git a/src/pronouns/web.clj b/src/pronouns/web.clj
index 9219369..6c758fe 100644
--- a/src/pronouns/web.clj
+++ b/src/pronouns/web.clj
@@ -51,7 +51,3 @@
 (defn -main []
   (let [port (Integer. (:port env))]
     (jetty/run-jetty app {:port port})))
-
-;; For interactive development:
-;; (.stop server)
-;; (def server (-main))