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
2 changes: 1 addition & 1 deletion docs/github_token_guide.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Setting Up a GitHub Personal Access Token for Exstatic

This guide walks you through creating a **GitHub Personal Access Token (PAT)** to allow Exstatic to authenticate and fetch precompiled NIFs from a private repository.
This guide walks you through creating a **GitHub Personal Access Token (PAT)** to allow Exstatic to authenticate and fetch precompiled NIFs from a private repository. If/when Exstatic becomes a public repo this will not be necessary.

## 1️⃣ Generate a New Token

Expand Down
4 changes: 3 additions & 1 deletion lib/exstatic/release_helper.ex
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
defmodule Exstatic.ReleaseHelper do
@moduledoc """
A helper module for fetching precompiled assets from a private GitHub release.
A helper module for fetching precompiled assets from a private GitHub release.

If/when Exstatic becomes a public repo this will not be necessary.

This module is designed to work with `RustlerPrecompiled`, allowing it to dynamically
fetch the correct precompiled NIF binaries from a GitHub release using the GitHub API.
Expand Down
3 changes: 2 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ defmodule Exstatic.MixProject do
[
name: "exstatic",
organization: "zappi",
files: ~w(lib mix.exs README.md checksum-*.exs),
files:
~w(lib native/exstatic/src native/exstatic/Cargo.toml mix.exs README.md checksum-*.exs),
licenses: ["MIT"],
links: %{"GitHub" => @source_url}
]
Expand Down