The source code of myapp
Install dependencies:
-
postgresql
$ brew install postgresql
Ensure you have already initialized a user with username:
postgres
and password:postgres
( e.g. using$ createuser -d postgres
command creating one ) -
rails 7
Using
rbenv
, updateruby
up to 3.x, and installrails 7.x
$ ruby -v ( output should be 3.x ) $ gem install rails $ rails -v ( output should be rails 7.x )
-
yarn
Install
yarn
for webpacker( see install document: https://yarnpkg.com/en/docs/install)$ yarn --version ( output should be 1.6.x or higher )
Install dependencies, setup db:
$ ./bin/setup
Start it:
$ rails s
Access url: /admin
Default superuser: admin
Default password: admin
- Ruby on Rails 7.x
- tailwind
- tailadmin
- figaro
- postgres
- high_voltage
- active_storage
- sidekiq
- kaminari
- mina
- puma
- rspec
MIT