The fifth individual project during Software Engineering Intensive course at New York Code and Design Academy.
It is a fullstack simple admin panel for a fictitious school whereby the administrator can create users and complete common administrative tasks.
The key features of this project are:
- Built with Ruby on Rails;
- Activerecord is used to make all database transactions;
- Bootstrap is used for page styling (card, tabs, floating buttons);
- User authentification implemented with devise gem;
Deployed to Heroku: https://marvel-admin-panel.herokuapp.com/
Sample User: email: m@sha.com password: 123456
- rails generate controller NAMEs index new create update edit destroy show
- // rails.applicarion.routs - resources : names
- rails g model Name name
- rals db:migrate
- // relationsip in models
- // methods in controllers
- // how methods looks in views