-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
1,049 additions
and
1,025 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,31 @@ | ||
# Back channeling | ||
|
||
![Back Channeling](./resources/public/img/logo.png) | ||
![Back channeling](./resources/public/img/logo.png) | ||
|
||
よくあるChatにありがちなチャネルによる分類ではなく、板>スレッド型の掲示板をリアルタイム化したようなものです。 | ||
あとJVM上で動くいい感じのWebチャットがないので、車輪の再発明したい。 | ||
Back channeling is a real-time BBS tool. | ||
|
||
## Setup | ||
It has the features as follows: | ||
|
||
- Setup easily | ||
- Supports markdown format | ||
- Supports voice chat | ||
- Curating of comments | ||
|
||
## Get started | ||
|
||
Currently, we support a development mode only. | ||
|
||
Start datomic. | ||
Start a datomic transactor. | ||
|
||
``` | ||
% bin/transactor config/xxx.properties | ||
% bin/transactor config/transactor.properties | ||
``` | ||
|
||
Start a back channeling. | ||
|
||
``` | ||
% lein with-profile production run | ||
% DATOMIC_URL=datomic:free://localhost:4334/bc bin/back_channeling | ||
``` | ||
|
||
A default port is 3009. | ||
|
||
## Features | ||
|
||
Back channeling is a realtime bbs. | ||
|
||
### Create a thread | ||
|
||
### Comment to a thread | ||
The default port is 3009. | ||
|
||
#### Thread |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.1.0-beta1 | ||
0.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
#!/bin/sh | ||
#!/bin/bash | ||
|
||
version=$(cat `dirname $0`/../VERSION) | ||
|
||
java -cp dist/back-channeling-${version}.jar:"lib/*" clojure.main -m back-channeling.core | ||
exec java -cp dist/back-channeling-${version}.jar:"lib/*" clojure.main -m back-channeling.core | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
#!/bin/transactor | ||
#!/bin/bash | ||
|
||
transactor_version=0.9.5198 | ||
transactor_jar=datomic-transactor-free-${transactor_version}.jar | ||
datomic_version=0.9.5206 | ||
datomic_dir=datomic-free-${datomic_version} | ||
|
||
function get_transactor () { | ||
curl --progress-bar --location --url "https://my.datomic.com/downloads/free/${transactor_version}" --output datomic.zip | ||
|
||
unzip -p datomic.zip datomic-free-${transactor_version}/${transactor_jar} > ${transactor_jar} | ||
function get_datomic () { | ||
curl --progress-bar --location --url "https://my.datomic.com/downloads/free/${datomic_version}" --output datomic.zip | ||
unzip -x datomic.zip | ||
} | ||
|
||
if []; then | ||
if [ ! -e "datomic-free-${datomic_version}" ]; then | ||
get_datomic | ||
fi | ||
|
||
exec java -server -cp ${datomic_dir}/datomic-transactor-free-${datomic_version}.jar:"${datomic_dir}/lib/*" clojure.main -m datomic.launcher ${datomic_dir}/config/samples/free-transactor-template.properties | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters