installation instructions

This commit is contained in:
Rob Ortiz
2020-07-21 22:57:54 -05:00
parent b6ba081c93
commit 8bcfa71dc2
2 changed files with 28 additions and 0 deletions

1
.gitignore vendored
View File

@@ -42,3 +42,4 @@ npm-debug.log
/.vagrant
*.log
*.sw?

View File

@@ -9,3 +9,30 @@ Do not attempt to use this software until this notice is removed.
You have been warned.
Check back later :-).
# Setup
* have postgres installed with a super user role `fireguard`
```
psql -h localhost -d postgres
CREATE ROLE fireguard;
```
* have elixir installed
```
brew install elixir
```
setup project
```
cd apps/fg_http && mix deps.get && mix ecto.setup
npm install --prefix assets
mix phx.server
```