forked from fixin.me/fixin.me
bundle exec rails generate scaffold user email:string{64}:uniq status:integer
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
Languages
Ruby
62.5%
HTML
25.6%
CSS
9.4%
JavaScript
2.5%