-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'phoenix-1.6-2022-refresh-issue-#89' of github.com:dwyl/…
…app-mvp-phoenix into phoenix-1.6-2022-refresh-issue-#89
- Loading branch information
Showing
3 changed files
with
28 additions
and
8 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 |
---|---|---|
|
@@ -245,12 +245,24 @@ in your terminal: | |
|
||
```sh | ||
git clone [email protected]:dwyl/app-mvp-phoenix.git && cd app-mvp-phoenix | ||
source .env | ||
mix setup | ||
``` | ||
That will download the MVP code, | ||
install dependencies | ||
and create the necessary database + tables. | ||
|
||
the line `source .env` load the environment variables required for the | ||
application to compile and run (see next section). | ||
|
||
If for any reason you have an error while running the setup, try to rebuild/compile | ||
the application by deleting the existing `_build` folder and running the `setup` again: | ||
|
||
```sh | ||
rm -r _build | ||
mix setup | ||
``` | ||
|
||
## _Single_ Environment Variable: `AUTH_API_KEY` | ||
|
||
Follow the instructions in **Step 2** of | ||
|
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
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