-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit fe6f157
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Backpex | ||
|
||
Backpex is a simple admin dashboard that makes it easy to manage existing resources in your application. | ||
|
||
See our comprehensive [docs](https://hexdocs.pm/backpex/) for more information. | ||
|
||
## Development | ||
|
||
### Requirements | ||
|
||
- [Docker](https://www.docker.com/) | ||
- [Mutagen Compose](https://mutagen.io/documentation/orchestration/compose) | ||
|
||
### Recommended Extensions | ||
|
||
- [Editorconfig](http://editorconfig.org) | ||
- [JavaScript Standard Style](https://github.com/standard/standard#are-there-text-editor-plugins) | ||
|
||
### Setup | ||
|
||
- Clone the repository. | ||
- In `demo` directpry run `cp .env.example .env` and set values accordingly. | ||
- Generate `SECRET_KEY_BASE` via `mix phx.gen.secret`. | ||
- Generate `LIVE_VIEW_SIGNING_SALT` via `mix phx.gen.secret 32`. | ||
- Run `mutagen-compose up` (`yarn watch` is triggered autoamtically). | ||
- Run `mix dialyzer --plt` inside the `app` container to generate the initial PLT file. | ||
|
||
Now you can visit [`localhost:4000`](http://localhost:4000) from your browser. |