Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 1.57 KB

README.md

File metadata and controls

44 lines (35 loc) · 1.57 KB

swuber_3

Why Swuber?

It started in parking lot 14; on the way to class I asked a friend if they could give me a ride. the friend was not leaving but also going to class. As a result we walked together and not alone. Later when leaving the library I was forced to walk alone by lack of communication and lack of traffic at that hour.

I did not want to walk to my car. I waited outside the library for someone I knew. Eventually I gave up but the idea was born. Generosity(reputation) and the capital of my parking spot could be used to get me to my car without having to walk alone.

For years people have tried to solve the problem of finding a parking spot at the University of North Florida.

We solved "the parking problem" in order to solve a "walking problem"


Implementation

On a mac: make sure postgress is installed via homebrew.

brew install postgresql
brew services start postgresql
now restart your computer, reason: postgres uses a launchd. (only needed for first time postgresql start.)
  • Gather dependencies
 mix deps.get
 npm install 
  • Create and migrate your database with
 mix ecto.create && mix ecto.migrate
  • Start Phoenix server
 mix phoenix.server

Now you can visit localhost:4000 from your browser.

Done so far notes

1.) look at endpoint... but dont touch
2.) change channels
3.) change static javascript
4.) change template web page

UnfSwuber