motor-admin
https://github.com/motor-admin
下载项目源码
git clone git@github.com:motor-admin/motor-admin.git
Ruby 版本选择
2.7.1
安装项目依赖的 gem
bundle install
rails about
启动数据库
sudo service postgresql start
执行数据库迁移
执行数据库创建、迁移、填充数据等操作
rails db:create
rails db:migrate
rails db:seed
启动 webpack-derver
npm install -g yarn
yarn
./bin/webpack-dev-server
开发环境下启动 rails 项目
rails s
项目首页 [外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-qyA2OApy-1639316234911)(img/discourse01.jpg)]
rails about
(base) peng@peng-pc:~/RailsTrainCamp/code/1103/discourse$ rails about
About your application's environment
Rails version 6.1.4.1
Ruby version ruby 3.0.3
RubyGems version 3.1.6
Rack version 2.2.3
JavaScript Runtime mini_racer (V8)
Middleware MessageBus::Rack::Middleware, Rack::MiniProfiler, Middleware::TurboDev, Middleware::MissingAvatars, ActionDispatch::HostAuthorization, Rack::Sendfile, ActionDispatch::Static, ActionDispatch::Executor, Rack::MethodOverride, ActionDispatch::RequestId, ActionDispatch::RemoteIp, SilenceLogger, Logster::Middleware::Reporter, ActionDispatch::ShowExceptions, Logster::Middleware::DebugExceptions, ActionDispatch::ActionableExceptions, ActionDispatch::Reloader, ActionDispatch::Callbacks, ActiveRecord::Migration::CheckPending, ActionDispatch::Cookies, ActionDispatch::Session::DiscourseCookieStore, ActionDispatch::Flash, ContentSecurityPolicy::Middleware, ActionDispatch::PermissionsPolicy::Middleware, Rack::Head, Rack::ConditionalGet, Rack::TempfileReaper, Middleware::OmniauthBypassMiddleware
Application root /home/peng/RailsTrainCamp/code/1103/discourse
Environment development
Database adapter postgresql
Database schema version 0
启动数据库
sudo service postgresql start
执行数据库迁移
执行数据库创建、迁移、填充数据等操作
rails db:create
rails db:migrate
rails db:seed
启动 webpack-derver
npm install -g yarn
yarn
./bin/webpack-dev-server
开发环境下启动 rails 项目
rails s
数据库设计文件
ActiveRecord::Schema.define(version: 2021_08_05_081429) do
enable_extension "plpgsql"
create_table "motor_admin_user_roles", force: :cascade do |t|
t.bigint "admin_user_id", null: false
t.bigint "role_id", null: false
t.datetime "created_at", precision: 6, null: false
t.datetime "updated_at", precision: 6, null: false
t.index ["admin_user_id"], name: "index_motor_admin_user_roles_on_admin_user_id"
t.index ["role_id", "admin_user_id"], name: "index_motor_admin_user_roles_on_role_id_and_admin_user_id", unique: true
t.index ["role_id"], name: "index_motor_admin_user_roles_on_role_id"
end
create_table "motor_admin_users", force: :cascade do |t|
t.string "email", default: "", null: false
t.string "first_name"
t.string "last_name"
t.string "encrypted_password", default: "", null: false
t.string "reset_password_token"
t.datetime "reset_password_sent_at", precision: 6
t.datetime "remember_created_at", precision: 6
t.integer "sign_in_count", default: 0, null: false
t.datetime "current_sign_in_at", precision: 6
t.datetime "last_sign_in_at", precision: 6
t.string "current_sign_in_ip"
t.string "last_sign_in_ip"
t.integer "failed_attempts", default: 0, null: false
t.string "unlock_token"
t.datetime "locked_at", precision: 6
t.datetime "deleted_at", precision: 6
t.datetime "created_at", precision: 6, null: false
t.datetime "updated_at", precision: 6, null: false
t.index ["email"], name: "index_motor_admin_users_on_email", unique: true
t.index ["reset_password_token"], name: "index_motor_admin_users_on_reset_password_token", unique: true
t.index ["unlock_token"], name: "index_motor_admin_users_on_unlock_token", unique: true
end
create_table "motor_alert_locks", force: :cascade do |t|
t.bigint "alert_id", null: false
t.string "lock_timestamp", null: false
t.datetime "created_at", precision: 6, null: false
t.datetime "updated_at", precision: 6, null: false
t.index ["alert_id", "lock_timestamp"], name: "index_motor_alert_locks_on_alert_id_and_lock_timestamp", unique: true
t.index ["alert_id"], name: "index_motor_alert_locks_on_alert_id"
end
create_table "motor_alerts", force: :cascade do |t|
t.bigint "query_id", null: false
t.string "name", null: false
t.text "description"
t.text "to_emails", null: false
t.boolean "is_enabled", default: true, null: false
t.text "preferences", null: false
t.bigint "author_id"
t.string "author_type"
t.datetime "deleted_at", precision: 6
t.datetime "created_at", precision: 6, null: false
t.datetime "updated_at", precision: 6, null: false
t.index ["name"], name: "motor_alerts_name_unique_index", unique: true, where: "(deleted_at IS NULL)"
t.index ["query_id"], name: "index_motor_alerts_on_query_id"
t.index ["updated_at"], name: "index_motor_alerts_on_updated_at"
end
create_table "motor_audits", force: :cascade do |t|
t.bigint "auditable_id"
t.string "auditable_type"
t.bigint "associated_id"
t.string "associated_type"
t.bigint "user_id"
t.string "user_type"
t.string "username"
t.string "action"
t.text "audited_changes"
t.bigint "version", default: 0
t.text "comment"
t.string "remote_address"
t.string "request_uuid"
t.datetime "created_at", precision: 6
t.index ["associated_type", "associated_id"], name: "motor_auditable_associated_index"
t.index ["auditable_type", "auditable_id", "version"], name: "motor_auditable_index"
t.index ["created_at"], name: "index_motor_audits_on_created_at"
t.index ["request_uuid"], name: "index_motor_audits_on_request_uuid"
t.index ["user_id", "user_type"], name: "motor_auditable_user_index"
end
create_table "motor_configs", force: :cascade do |t|
t.string "key", null: false
t.text "value", null: false
t.datetime "created_at", precision: 6, null: false
t.datetime "updated_at", precision: 6, null: false
t.index ["key"], name: "index_motor_configs_on_key", unique: true
t.index ["updated_at"], name: "index_motor_configs_on_updated_at"
end
create_table "motor_dashboards", force: :cascade do |t|
t.string "title", null: false
t.text "description"
t.text "preferences", null: false
t.bigint "author_id"
t.string "author_type"
t.datetime "deleted_at", precision: 6
t.datetime "created_at", precision: 6, null: false
t.datetime "updated_at", precision: 6, null: false
t.index ["title"], name: "motor_dashboards_title_unique_index", unique: true, where: "(deleted_at IS NULL)"
t.index ["updated_at"], name: "index_motor_dashboards_on_updated_at"
end
create_table "motor_encrypted_configs", force: :cascade do |t|
t.string "key", null: false
t.text "value", null: false
t.datetime "created_at", precision: 6, null: false
t.datetime "updated_at", precision: 6, null: false
t.index ["key"], name: "index_motor_encrypted_configs_on_key", unique: true
t.index ["updated_at"], name: "index_motor_encrypted_configs_on_updated_at"
end
create_table "motor_forms", force: :cascade do |t|
t.string "name", null: false
t.text "description"
t.text "api_path", null: false
t.string "http_method", null: false
t.text "preferences", null: false
t.bigint "author_id"
t.string "author_type"
t.datetime "deleted_at", precision: 6
t.datetime "created_at", precision: 6, null: false
t.datetime "updated_at", precision: 6, null: false
t.index ["name"], name: "motor_forms_name_unique_index", unique: true, where: "(deleted_at IS NULL)"
t.index ["updated_at"], name: "index_motor_forms_on_updated_at"
end
create_table "motor_queries", force: :cascade do |t|
t.string "name", null: false
t.text "description"
t.text "sql_body", null: false
t.text "preferences", null: false
t.bigint "author_id"
t.string "author_type"
t.datetime "deleted_at", precision: 6
t.datetime "created_at", precision: 6, null: false
t.datetime "updated_at", precision: 6, null: false
t.index ["name"], name: "motor_queries_name_unique_index", unique: true, where: "(deleted_at IS NULL)"
t.index ["updated_at"], name: "index_motor_queries_on_updated_at"
end
create_table "motor_resources", force: :cascade do |t|
t.string "name", null: false
t.text "preferences", null: false
t.datetime "created_at", precision: 6, null: false
t.datetime "updated_at", precision: 6, null: false
t.index ["name"], name: "index_motor_resources_on_name", unique: true
t.index ["updated_at"], name: "index_motor_resources_on_updated_at"
end
create_table "motor_roles", force: :cascade do |t|
t.string "name", null: false
t.text "rules", null: false
t.datetime "created_at", precision: 6, null: false
t.datetime "updated_at", precision: 6, null: false
t.index ["name"], name: "index_motor_roles_on_name", unique: true
t.index ["updated_at"], name: "index_motor_roles_on_updated_at"
end
create_table "motor_taggable_tags", force: :cascade do |t|
t.bigint "tag_id", null: false
t.bigint "taggable_id", null: false
t.string "taggable_type", null: false
t.index ["tag_id"], name: "index_motor_taggable_tags_on_tag_id"
t.index ["taggable_id", "taggable_type", "tag_id"], name: "motor_polymorphic_association_tag_index", unique: true
end
create_table "motor_tags", force: :cascade do |t|
t.string "name", null: false
t.datetime "created_at", precision: 6, null: false
t.datetime "updated_at", precision: 6, null: false
t.index ["name"], name: "motor_tags_name_unique_index", unique: true
end
add_foreign_key "motor_admin_user_roles", "motor_admin_users", column: "admin_user_id"
add_foreign_key "motor_admin_user_roles", "motor_roles", column: "role_id"
add_foreign_key "motor_alert_locks", "motor_alerts", column: "alert_id"
add_foreign_key "motor_alerts", "motor_queries", column: "query_id"
add_foreign_key "motor_taggable_tags", "motor_tags", column: "tag_id"
end
|