Website i made during the 9 weeks course of Codaisseur. The assignment was to make an Meetup clone with forms, and image upload.
These are the steps I followed when working on this app:
- Setting up project
- Adding Bootstrap, jquery, devise, rspec,
- Setting up the database
- Setting up the models, and controllers.
- Adding views
- Add Cloudinary, carrierwave
- Categories
- title:string
- Events
- title:string
- description:text
- location:string
- price:decimal
- capacity:integer
- includes_food:boolean
- includes_drinks:boolean
- active:boolean
- starts_at:datetime
- ends_at:datetime
- Photos
- event_id:bigint
- image:string
- Profiles
- first_name:string
- last_name:string
- bio:text
- Registations
- user_id:bigint
- event_id:bigint
- status:boolean
- guest_count:integer
Make sure you have Ruby and Bundler installed.
git clone [email protected]:Opaismoe/codaisseurup.git
cd Codaisseurup
bundle install
rails db:create db:migrate db:seed
rails server
For more information about using CarrierWave and Cloudinary, see these links: