A simple Rails app that helps you manage your studies, similar to this CLI project.
- ruby 2.7.1
Clone this repo locally and run the setup script:
$ git clone https://github.com/librity/campus_code_study_diary
$ cd campus_code_study_diary
$ bin/setup
Migrate and seed the database:
$ bundle exec rails db:migrate
$ bundle exec rails db:seed
If everythig installed correctly, start the development server with:
$ bundle exec rails server
And open http://localhost:3000 on your browser.
You will be able to create, read, update and destroy Study Items from the interface. All data is persisted in an SQLite3 database.