diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..1f44e22 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,8 @@ +language: rust +sudo: required +rust: +- stable +script: +- | + cargo build && + cargo test diff --git a/Procfile b/Procfile new file mode 100644 index 0000000..fffa560 --- /dev/null +++ b/Procfile @@ -0,0 +1,2 @@ +web: ./target/release/lupt -s ./static -a 0.0.0.0:$PORT + diff --git a/app.json b/app.json new file mode 100644 index 0000000..c93f3cd --- /dev/null +++ b/app.json @@ -0,0 +1,11 @@ +{ + "name": "Lupt", + "description": "Chat app to talk in group or to strangers", + "repository": "https://gitlab.com/PiyushXCoder/lupt", + "success_url": "/", + "keywords": ["rust", "actix"], + "website": "https://gitlab.com/PiyushXCoder/lupt", + "env": { + "BUILDPACK_URL": "https://gitlab.com/PiyushXCoder/lupt.git" + } + }