Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# ErrorTracker
# 🐛 ErrorTracker

An Elixir based built-in error tracking solution.
<a title="GitHub CI" href="https://github.com/elixir-error-tracker/error-tracker/actions"><img src="https://github.com/elixir-error-tracker/error-tracker/workflows/CI/badge.svg" alt="GitHub CI" /></a>
<a title="Latest release" href="https://hex.pm/packages/error_tracker"><img src="https://img.shields.io/hexpm/v/error_tracker.svg" alt="Latest release" /></a>
<a title="View documentation" href="https://hexdocs.pm/error_tracker"><img src="https://img.shields.io/badge/hex.pm-docs-blue.svg" alt="View documentation" /></a>

> An Elixir based built-in error tracking solution.

<a href="guides/screenshots/error-dashboard.png">
<img src="guides/screenshots/error-dashboard.png" alt="ErrorTracker web dashboard" width="400">
Expand Down
2 changes: 1 addition & 1 deletion guides/Getting Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ In this guide we will learn how to install ErrorTracker in an Elixir project so

**This guide requires you to have set up Ecto with PostgreSQL or SQLite3 beforehand.**

## Installing the ErrorTracker as a dependency
## Installing ErrorTracker as a dependency

The first step to add ErrorTracker to your application is to declare the package as a dependency in your `mix.exs` file:

Expand Down
2 changes: 1 addition & 1 deletion lib/error_tracker/web/components/layouts/navbar.ex
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ defmodule ErrorTracker.Web.Layouts.Navbar do
href={dashboard_path(@socket)}
class="self-center text-2xl font-semibold whitespace-nowrap text-white"
>
ErrorTracker
<span class="mr-2">🐛</span>ErrorTracker
</.link>
<button
type="button"
Expand Down
2 changes: 1 addition & 1 deletion lib/error_tracker/web/components/layouts/root.html.heex
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<meta name="socket-path" content={get_socket_config(:path)} />
<meta name="socket-transport" content={get_socket_config(:transport)} />

<title><%= assigns[:page_title] || "ErrorTracker" %></title>
<title><%= assigns[:page_title] || "🐛 ErrorTracker" %></title>

<style>
<%= raw get_content(:css) %>
Expand Down