├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE ├── README.md ├── Vagrantfile ├── app ├── brunch-config.js ├── elm │ ├── Data │ │ ├── Comment.elm │ │ ├── Init.elm │ │ └── User.elm │ ├── Main.elm │ ├── Markdown.elm │ ├── Models.elm │ ├── Msg.elm │ ├── Native │ │ └── Markdown.js │ ├── Ports.elm │ ├── Request │ │ ├── Comment.elm │ │ └── Init.elm │ ├── Style.elm │ ├── Stylesheets.elm │ ├── Time │ │ └── DateTime │ │ │ └── Distance.elm │ ├── Update.elm │ ├── Util.elm │ ├── View.elm │ ├── elm-package.json │ └── tests │ │ ├── Helpers │ │ └── Dates.elm │ │ ├── Tests.elm │ │ └── elm-package.json ├── js │ └── oration.js ├── package.json └── static │ ├── favicon.ico │ ├── index.html │ ├── post-1.html │ └── post-2.html ├── logo ├── logo_b.svg ├── logo_w.svg └── logo_wbl.svg ├── migrations ├── .gitkeep └── 20170719094701_create_oration │ ├── down.sql │ └── up.sql ├── oration.yaml ├── src ├── config.rs ├── data.rs ├── db.rs ├── errors.rs ├── main.rs ├── models │ ├── comments │ │ └── mod.rs │ ├── mod.rs │ ├── preferences │ │ └── mod.rs │ └── threads │ │ └── mod.rs ├── notify.rs ├── schema.rs ├── static_files.rs └── tests.rs └── staging ├── config ├── nginx.conf ├── nginx.vhost.conf └── oration.service ├── prepare.yml ├── services.yml └── staging.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/Vagrantfile -------------------------------------------------------------------------------- /app/brunch-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/app/brunch-config.js -------------------------------------------------------------------------------- /app/elm/Data/Comment.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/app/elm/Data/Comment.elm -------------------------------------------------------------------------------- /app/elm/Data/Init.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/app/elm/Data/Init.elm -------------------------------------------------------------------------------- /app/elm/Data/User.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/app/elm/Data/User.elm -------------------------------------------------------------------------------- /app/elm/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/app/elm/Main.elm -------------------------------------------------------------------------------- /app/elm/Markdown.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/app/elm/Markdown.elm -------------------------------------------------------------------------------- /app/elm/Models.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/app/elm/Models.elm -------------------------------------------------------------------------------- /app/elm/Msg.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/app/elm/Msg.elm -------------------------------------------------------------------------------- /app/elm/Native/Markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/app/elm/Native/Markdown.js -------------------------------------------------------------------------------- /app/elm/Ports.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/app/elm/Ports.elm -------------------------------------------------------------------------------- /app/elm/Request/Comment.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/app/elm/Request/Comment.elm -------------------------------------------------------------------------------- /app/elm/Request/Init.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/app/elm/Request/Init.elm -------------------------------------------------------------------------------- /app/elm/Style.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/app/elm/Style.elm -------------------------------------------------------------------------------- /app/elm/Stylesheets.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/app/elm/Stylesheets.elm -------------------------------------------------------------------------------- /app/elm/Time/DateTime/Distance.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/app/elm/Time/DateTime/Distance.elm -------------------------------------------------------------------------------- /app/elm/Update.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/app/elm/Update.elm -------------------------------------------------------------------------------- /app/elm/Util.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/app/elm/Util.elm -------------------------------------------------------------------------------- /app/elm/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/app/elm/View.elm -------------------------------------------------------------------------------- /app/elm/elm-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/app/elm/elm-package.json -------------------------------------------------------------------------------- /app/elm/tests/Helpers/Dates.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/app/elm/tests/Helpers/Dates.elm -------------------------------------------------------------------------------- /app/elm/tests/Tests.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/app/elm/tests/Tests.elm -------------------------------------------------------------------------------- /app/elm/tests/elm-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/app/elm/tests/elm-package.json -------------------------------------------------------------------------------- /app/js/oration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/app/js/oration.js -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/app/package.json -------------------------------------------------------------------------------- /app/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/app/static/favicon.ico -------------------------------------------------------------------------------- /app/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/app/static/index.html -------------------------------------------------------------------------------- /app/static/post-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/app/static/post-1.html -------------------------------------------------------------------------------- /app/static/post-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/app/static/post-2.html -------------------------------------------------------------------------------- /logo/logo_b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/logo/logo_b.svg -------------------------------------------------------------------------------- /logo/logo_w.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/logo/logo_w.svg -------------------------------------------------------------------------------- /logo/logo_wbl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/logo/logo_wbl.svg -------------------------------------------------------------------------------- /migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /migrations/20170719094701_create_oration/down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/migrations/20170719094701_create_oration/down.sql -------------------------------------------------------------------------------- /migrations/20170719094701_create_oration/up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/migrations/20170719094701_create_oration/up.sql -------------------------------------------------------------------------------- /oration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/oration.yaml -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/src/data.rs -------------------------------------------------------------------------------- /src/db.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/src/db.rs -------------------------------------------------------------------------------- /src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/src/errors.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/models/comments/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/src/models/comments/mod.rs -------------------------------------------------------------------------------- /src/models/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/src/models/mod.rs -------------------------------------------------------------------------------- /src/models/preferences/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/src/models/preferences/mod.rs -------------------------------------------------------------------------------- /src/models/threads/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/src/models/threads/mod.rs -------------------------------------------------------------------------------- /src/notify.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/src/notify.rs -------------------------------------------------------------------------------- /src/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/src/schema.rs -------------------------------------------------------------------------------- /src/static_files.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/src/static_files.rs -------------------------------------------------------------------------------- /src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/src/tests.rs -------------------------------------------------------------------------------- /staging/config/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/staging/config/nginx.conf -------------------------------------------------------------------------------- /staging/config/nginx.vhost.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/staging/config/nginx.vhost.conf -------------------------------------------------------------------------------- /staging/config/oration.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/staging/config/oration.service -------------------------------------------------------------------------------- /staging/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/staging/prepare.yml -------------------------------------------------------------------------------- /staging/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/staging/services.yml -------------------------------------------------------------------------------- /staging/staging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Libbum/oration/HEAD/staging/staging.yml --------------------------------------------------------------------------------