-
Notifications
You must be signed in to change notification settings - Fork 0
Week 2
SUNDAY | MONDAY | TUESDAY | WEDNESDAY | THURSDAY | FRIDAY | SATURDAY |
---|---|---|---|---|---|---|
2 | 3 | 4 | 5 | 6 | 7 | 8 |
- Tips for searching for answers and debugging
- Frontend
- Intro to visual design for developers - Brooke Kao
- Intro to html and css frameworks - Mallory Reulman
- Backend
- Frameworks and libraries
- Intro to databases
- Slides
- Our Tech stack
- Sketches/wireframes for the project
- User test the sketches/wireframes
- Tasks in the backlog
- README
- Get our Dev environments set up
- Experiment with the gtfs files
- Experiment with the Yelp API
- Experiment with the Google API
- Add the React on Rails Gem
- Set up User Stories in the Tracker
- Start coding
- Continue learning language, git, frameworks
- Pick a CSS framework if needed
- Pick a database if needed
- Pick plain SQL vs ORM if needed
- Add hard coded-coded data or seed data if needed
- Users test the app if needed
- Use a project management tool if needed
- Start coding
- Pick a persistence strategy
Venetya Attempted creation of scaffolding using
rails new LoveLA -d postgresql
The pg gem failed to install. Researching solution.
I was able to resolve the problem using
brew update; brew install postgresql
from the command line. Brew reported that postgresql was already installed, it just wasn't linked. To create the symlinks I had to enter this at the command line:
brew link --overwrite postgresql
Once the symlinks were successfully created I was able to install the gem.
I launched PGAdmin and added a new role (lovela) and a new database (lovela). The next step was to modify the database.yml file in the Rails project with the appropriate login info under the 'development' area.
development:
<<: *default
adapter: postgresql
encoding: unicode
database: lovela
pool:
username: lovela
password: lovela
With these details completed, the web server can now be launched on my local machine.
Jen
We experimented with Git Projects and found it a bit too new to use.
https://www.pivotaltracker.com/projects/2071807/memberships
Jen
I got as far as foreman start -f Procfile.dev
in the React-on-Rails tutorial
https://shakacode.gitbooks.io/react-on-rails/content/docs/tutorial.html
https://github.com/shakacode/react_on_rails
At which point I could not run the server. I think it has to do withmy Vagrant
Venetya Created routes for metro api http requests, one for a list of routes, another for a list of stops. Created templates for displaying list of routes.
Obtained credentials from Yelp and Google for getting location information and maps.
Jen 7pm standup Open Street Map has a public query point, which means you can get raw data for overlaying upon Google Maps! Ex: map of pharmacies in LA, click Data to get data: http://overpass-turbo.eu/s/qbe
Venetya Created models and migrations for route and stop info. The metro api was returning error 502 this morning, which indicates we will need to have a backup data source.