Render Deployment
Back End Repository
DB Schema
Full Team Miro Board |
Users Team Miro Board |
Events Team Miro Board
- Lauren Golden: GitHub | LinkedIn
- Alex Kiselich: GitHub | LinkedIn
- Garrett Gregor: GitHub | LinkedIn
- Andy Weissman: GitHub | LinkedIn
- Jeff Nelson: GitHub | LinkedIn
- Sarah Garlock: GitHub | LinkedIn
- Jesse Thomas: GitHub | LinkedIn
- Austin Woods: GitHub | LinkedIn
- Myles Nottingham: GitHub | LinkedIn
- Blaine Glasgow: GitHub | LinkedIn
- Amy Spears: GitHub | LinkedIn
- Steven Stackhouse: GitHub | LinkedIn
Jana Social is an application for caregivers of adults with disabilities. It is a place for caregivers to connect with other caregivers, share stories, and find events in their area. Jana Social is a place for caregivers to find support and community. Users can create/join events, search for other users, and add friends.
This project was created for the Turing School of Software and Design's Mod 3 Group Project. The project was built over the course of 12 days. We had three teams working on the project: Users, Events, and Location/Friends. Each team was split up between back end and front end. The back end teams were responsible for building out the API endpoints and the front end teams were responsible for building out the user interface.
Ruby 3.2.2
Rails 7.0.6
Mapquest API Keys:here
Clone this repository:
Add Figaro to your Gemfile and bundle install:
gem 'figaro'
bundle install
Or install Figaro the easy way:
$ bundle exec figaro install
This creates a commented config/application.yml
file and adds it to your .gitignore
. Add your own configuration to this file and you're done!
-
Clone Jana Social's Back End Repository:
-
In the app/services/render_service.rb file, comment out the url to
Faraday.new(url: "https://jana-social-be.onrender.com")
and comment inFaraday.new(url: "http://localhost:3000")
. This is important for local testing. -
Run Back End Repo in server with localhost:3000
-
Run Front End Repo in servier with localhost:5000
-
Run
$ bundle exec rspec
to run the test suite.