Skip to content

Commit a363eb4

Browse files
committed
adds *complete* instructions for how to run the project locally #6
1 parent 29796ad commit a363eb4

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

README.md

+24
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,32 @@ and **temporarily** <br />
8282
so you need to start your server in the **same terminal**
8383
where you ran the `source` command_.
8484

85+
#### Install Dependencies
86+
87+
```
88+
mix deps.get
89+
npm install
90+
```
91+
92+
#### Creat the Database (_if it does not already exist_)
93+
94+
```
95+
mix do ecto.create
96+
```
97+
8598
#### Run the Server
8699

87100
```
88101
mix phoenix.server
89102
```
103+
You should see:
104+
```
105+
[info] Running Dwylbot.Endpoint with Cowboy using http://localhost:4000
106+
```
107+
108+
#### View the Project in your Web Browser
109+
110+
Open http://localhost:4000 in your web browser.
111+
112+
113+
### _Understanding_ The Project

0 commit comments

Comments
 (0)