A simplified Jira clone built with seed.rs and actix
Go to file
2020-03-31 11:36:39 +02:00
jirs-cli Initial commit 2020-03-27 12:17:27 +01:00
jirs-client Add list 2020-03-31 11:36:39 +02:00
jirs-data Add basic view 2020-03-30 14:26:25 +02:00
jirs-server Finish visual aside 2020-03-30 23:19:00 +02:00
migrations Add some filters 2020-03-31 11:11:06 +02:00
react-client Add some filters 2020-03-31 11:11:06 +02:00
.env Add basic view 2020-03-30 14:26:25 +02:00
.gitignore Initial commit 2020-03-27 12:17:27 +01:00
Cargo.lock Add basic view 2020-03-30 14:26:25 +02:00
Cargo.toml Display project, show and edit issue 2020-03-28 21:41:16 +01:00
CONTRIBUTING.md Add CONTRIBUTING 2020-03-30 21:26:35 +00:00
docker-compose.yml Add queries 2020-03-27 16:17:25 +01:00
LICENSE Add LICENSE 2020-03-30 21:19:29 +00:00
README.md Add readme 2020-03-30 23:41:26 +02:00

A simplified Jira clone built with seed.rs and actix

Features

  • Actor based asynchronous backend
  • Ultra fast functional frontend build with WASM

How to run it

Local variables

Within jirs directory place .env file with following content

DATABASE_URL=postgres://postgres@localhost:5432/jirs
RUST_LOG=actix_web=info,diesel=info
JIRS_CLIENT_PORT=7000
JIRS_CLIENT_BIND=0.0.0.0
JIRS_SERVER_PORT=5000
JIRS_SERVER_BIND=0.0.0.0
NODE_ENV=development
DEBUG=true

Backend

Requirements:

  • PostgreSQL
cargo install diesel_cli --no-default-features --features postgres
diesel setup
diesel migration run

cargo run --bin jirs_server

Frontend

curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
cd jirs_client
yarn
yarn webpack-dev-server