Skip to content

Commit

Permalink
fixes & bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Clivern committed Feb 5, 2024
1 parent 9b5269f commit 15dcf68
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,8 @@ npm-debug.log

gorilla_test*
gorilla_dev*
.vscode
.vscode

!.env.example
.env.*
.env
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<img src="https://github.com/Clevenio/Gorilla/actions/workflows/ci.yml/badge.svg"/>
</a>
<a href="https://github.com/Clevenio/Gorilla/releases">
<img src="https://img.shields.io/badge/Version-0.1.0-1abc9c.svg">
<img src="https://img.shields.io/badge/Version-0.1.1-1abc9c.svg">
</a>
<a href="https://github.com/Clevenio/Gorilla/blob/master/LICENSE">
<img src="https://img.shields.io/badge/LICENSE-MIT-orange.svg">
Expand Down Expand Up @@ -35,6 +35,9 @@ $ make migrate
To start the application.

```zsh
$ cp .env.example .env.local
$ export $(cat .env | xargs)

$ make run
```

Expand Down Expand Up @@ -62,6 +65,17 @@ $ docker run -itd \
-p 5432:5432 \
--name postgresql \
postgres:15.2

$ podman run -itd \
-e POSTGRES_USER=brangus \
-e POSTGRES_PASSWORD=brangus \
-e POSTGRES_DB=brangus_dev \
-p 5432:5432 \
--name postgresql \
postgres:15.2

# https://github.com/dbcli/pgcli
$ psql -h 127.0.0.1 -U brangus -d brangus_dev -W
```


Expand Down
2 changes: 1 addition & 1 deletion config/runtime.exs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ if config_env() == :prod do
secret_key_base =
System.get_env("APP_SECRET") ||
raise """
environment variable SECRET_KEY_BASE is missing.
environment variable APP_SECRET is missing.
You can generate one by calling: mix phx.gen.secret
"""

Expand Down

0 comments on commit 15dcf68

Please sign in to comment.