RemoteRetro alternatives and similar packages
Based on the "Applications" category.
Alternatively, view RemoteRetro alternatives based on common mentions on social networks and blogs.
-
Phoenix Trello
Trello tribute done in Elixir, Phoenix Framework, React and Redux. -
poxa
Pusher server implementation compatible with Pusher client libraries. -
Logflare
Never get surprised by a logging bill again. Centralized structured logging for Cloudflare, Vercel, Elixir and Javascript. -
Phoenix Battleship
The Good Old game, built with Elixir, Phoenix, React and Redux -
AlloyCI
Continuous Integration, Deployment, and Delivery coordinator, written in Elixir. -
ExChat
(Not maintaining) A Slack-like app by Elixir, Phoenix & React(redux) -
ExShop
Digital goods shop & blog created using Elixir (Phoenix framework) -
CaptainFact
🔎 CaptainFact - API. The one that serves and process all the data for https://captainfact.io -
Phoenix Toggl
Toggl tribute done with Elixir, Phoenix Framework, React and Redux. -
Startup Job
An app to search startup jobs scraped from websites written in Elixir, Phoenix, React and styled-components. -
Consolex
Consolex is a tool that allows you to attach a web based console to any mix project -
Hydra
Open source API gateway with integrated cache and data transformations. -
uai_shot
A multiplayer ship game built with Elixir, Phoenix Framework and Phaser. :rocket: -
Queerlink
A simple yet efficient URL shortening service written in Elixir -
Alher
Alexander is a rock-solid IRC bot written in Elixir with powerful plugins. -
Exon
Exon is a “mess manager” developed in Elixir and provides a simple API to manage & document your stuff. -
Nvjorn
A multi-protocol network services monitor written in Elixir using Poolboy. -
medusa_server
A simple web server written in elixir to stack images -
medex
Medical Examination - application for register health check callbacks and represent their state via HTTP. -
majremind
A self-maintained database of your updated server which tells you which one needs to be updated. -
Stabby Flies
A multiplayer fighting game built with Elixir, Phoenix and Pixi.
Clean code begins in your IDE with SonarLint
Do you think we are missing an alternative of RemoteRetro or a related project?
README
RemoteRetro
This repository houses the application code for RemoteRetro.org, a free web app that allows distributed teams to conduct Agile retrospectives. It is written in Elixir/Phoenix/React/Redux, and is sponsored by Stride Consulting.
Table of Contents
- Project Management
- Dev Environment Setup
- Tests
- Code
- Contributing
- Code of Conduct
- Acknowledgements
- License
Project Management
To see the project's current feature pipeline, simply install the wonderful ZenHub Chrome Extension.
- visit ZenHub.com, install the ZenHub Chrome Extension, and authorize when prompted
- Note: this installation assumes you visit zenhub.com using Chrome
- once the extension is installed, you should be able to visit the boards by typing 'b', or, if clicking is more your speed, simply click the "Boards" tab on the repo's homepage
Dev Environment Setup
PostgreSQL
- Install Homebrew
- Note: You'll be prompted to install the command-line developer tools. Do it.
- Install PostgreSQL via Homebrew:
brew install postgresql
# (follow directions supplied by brew output upon successful installation)
createdb
# depending on how you installed postgres, this user may already exist
createuser -s postgres
# make sure you can log in to default database
psql -h localhost
Elixir/Phoenix Dependencies
- Install the asdf version manager
- Install Erlang, Elixir, and their dependencies by running
bin/install_erlang_and_elixir_with_dependencies
- Create the "remote_retro_dev" database and migrate via
mix ecto.create && mix ecto.migrate
- Create the "remote_retro_test" database and migrate via
MIX_ENV=test mix ecto.create && mix ecto.migrate
Node Dependencies
- Ensure you have the asdf version manager installed
- Install the project's Node version and Node dependencies by running
bin/install_node_with_dependencies
Google OAuth
Authentication within Remote Retro relies on Google OAuth and the Google+ API. To set this up, navigate to the Google API console and create a new project: https://console.developers.google.com/apis
Next, click on "Credentials" in the left sidebar nav. On the right hand side, click on the "Create Credentials" button and select "OAuth client ID".
Settings
- Application type: Web application
- Authorized JavaScript origins:
http://localhost:4000
- Authorized redirect URIs:
http://localhost:4000/auth/google/callback
Click on the Create button. Using the information Google provides, add the following lines to your profile and source (or open a new terminal).
export REMOTE_RETRO_GOOGLE_OAUTH_CLIENT_ID="<Client Id>"
export REMOTE_RETRO_GOOGLE_OAUTH_CLIENT_SECRET="<Client secret>"
export REMOTE_RETRO_GOOGLE_OAUTH_REDIRECT_URI="http://localhost:4000/auth/google/callback"
Finally, enable the Google+ API for your project.
And Voila!
Start Phoenix endpoint with mix
Now you can visit localhost:4000
from your browser.
Tests
To continually execute the backend unit tests on file change:
mix test.watch
To execute the backend unit tests manually:
mix test
To execute the end-to-end tests:
mix e2e
To continually execute the client-side unit tests on file change:
yarn test:watch
To execute the client-side unit tests manually:
yarn test
Code
To run the local eslint:
mix lint
Contributing
[Contributing Guidelines](CONTRIBUTING.md)
Code of Conduct
[The Contributor Covenant](CODE_OF_CONDUCT.md)
Acknowledgements
Many thanks to the project's contributors for devoting their time, energy, and passion, and additional thanks go out to the leadership of Stride Consulting for giving this project the opportunity it needed to bloom.
License
[MIT](LICENSE)
*Note that all licence references and agreements mentioned in the RemoteRetro README section above
are relevant to that project's source code only.