cryptogopher deaf0fa73b Generate User scaffold
bundle exec rails generate scaffold user email:string{64}:uniq
  status:integer
2023-03-11 22:56:32 +01:00
2023-03-11 22:56:32 +01:00
2023-03-05 19:23:29 +01:00
2023-03-11 22:56:32 +01:00
2023-03-11 22:56:32 +01:00
2023-03-05 19:23:29 +01:00
2023-03-05 19:23:29 +01:00
2023-03-05 19:23:29 +01:00
2023-03-11 22:56:32 +01:00
2023-03-05 19:23:29 +01:00
2023-03-11 22:43:38 +01:00
2023-03-05 19:23:29 +01:00
2023-03-05 19:23:29 +01:00
2023-03-05 21:24:04 +01:00
2023-03-05 21:24:04 +01:00
2023-03-04 23:08:51 +01:00
2023-03-05 19:23:29 +01:00
2023-03-11 22:43:38 +01:00

README

Quantified self

  • Ruby version: 2.7
  • System dependencies: none

Configuration

cp -a config/application.rb.dist config/application.rb

Modify configuration settings below SETUP comment appropriately.

Database

cp -a config/database.yml.dist config/database.yml

Update database configuration.

Create database user and grant privileges:

> mysql -p
mysql> create user fixinme@localhost identified by '<some password>';
mysql> grant all privileges on fixinme.* to fixinme@localhost;
mysql> flush privileges;

Run database creation task:

RAILS_ENV="production" bundle exec rake db:create 

Run migrations ...

How to run the test suite: ...

Description
Quantified self
Readme 566 KiB
Languages
Ruby 62.5%
HTML 25.6%
CSS 9.4%
JavaScript 2.5%