Merge pull request 'feature/strapi' (#1) from feature/strapi into master
Reviewed-on: #1
This commit is contained in:
commit
e984119e92
|
@ -1 +0,0 @@
|
||||||
defaults
|
|
16
.editorconfig
Normal file
16
.editorconfig
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
root = true
|
||||||
|
|
||||||
|
[*]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 2
|
||||||
|
end_of_line = lf
|
||||||
|
charset = utf-8
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
insert_final_newline = true
|
||||||
|
|
||||||
|
[{package.json,*.yml}]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 2
|
||||||
|
|
||||||
|
[*.md]
|
||||||
|
trim_trailing_whitespace = false
|
7
.env.example
Normal file
7
.env.example
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
HOST=0.0.0.0
|
||||||
|
PORT=1337
|
||||||
|
APP_KEYS="toBeModified1,toBeModified2"
|
||||||
|
API_TOKEN_SALT=tobemodified
|
||||||
|
ADMIN_JWT_SECRET=tobemodified
|
||||||
|
TRANSFER_TOKEN_SALT=tobemodified
|
||||||
|
JWT_SECRET=tobemodified
|
139
.gitignore
vendored
139
.gitignore
vendored
|
@ -1,41 +1,114 @@
|
||||||
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
|
############################
|
||||||
#
|
# OS X
|
||||||
# If you find yourself ignoring temporary files generated by your text editor
|
############################
|
||||||
# or operating system, you probably want to add a global ignore instead:
|
|
||||||
# git config --global core.excludesfile '~/.gitignore_global'
|
|
||||||
|
|
||||||
# Ignore bundler config.
|
.DS_Store
|
||||||
/.bundle
|
.AppleDouble
|
||||||
|
.LSOverride
|
||||||
|
Icon
|
||||||
|
.Spotlight-V100
|
||||||
|
.Trashes
|
||||||
|
._*
|
||||||
|
|
||||||
# Ignore the default SQLite database.
|
|
||||||
/db/*.sqlite3
|
|
||||||
/db/*.sqlite3-journal
|
|
||||||
/db/*.sqlite3-*
|
|
||||||
|
|
||||||
# Ignore all logfiles and tempfiles.
|
############################
|
||||||
/log/*
|
# Linux
|
||||||
/tmp/*
|
############################
|
||||||
!/log/.keep
|
|
||||||
!/tmp/.keep
|
|
||||||
|
|
||||||
# Ignore pidfiles, but keep the directory.
|
*~
|
||||||
/tmp/pids/*
|
|
||||||
!/tmp/pids/
|
|
||||||
!/tmp/pids/.keep
|
|
||||||
|
|
||||||
# Ignore uploaded files in development.
|
|
||||||
/storage/*
|
|
||||||
!/storage/.keep
|
|
||||||
|
|
||||||
/public/assets
|
############################
|
||||||
.byebug_history
|
# Windows
|
||||||
|
############################
|
||||||
|
|
||||||
# Ignore master key for decrypting credentials and more.
|
Thumbs.db
|
||||||
/config/master.key
|
ehthumbs.db
|
||||||
|
Desktop.ini
|
||||||
|
$RECYCLE.BIN/
|
||||||
|
*.cab
|
||||||
|
*.msi
|
||||||
|
*.msm
|
||||||
|
*.msp
|
||||||
|
|
||||||
#/public/packs
|
|
||||||
/public/packs-test
|
############################
|
||||||
/node_modules
|
# Packages
|
||||||
/yarn-error.log
|
############################
|
||||||
yarn-debug.log*
|
|
||||||
.yarn-integrity
|
*.7z
|
||||||
|
*.csv
|
||||||
|
*.dat
|
||||||
|
*.dmg
|
||||||
|
*.gz
|
||||||
|
*.iso
|
||||||
|
*.jar
|
||||||
|
*.rar
|
||||||
|
*.tar
|
||||||
|
*.zip
|
||||||
|
*.com
|
||||||
|
*.class
|
||||||
|
*.dll
|
||||||
|
*.exe
|
||||||
|
*.o
|
||||||
|
*.seed
|
||||||
|
*.so
|
||||||
|
*.swo
|
||||||
|
*.swp
|
||||||
|
*.swn
|
||||||
|
*.swm
|
||||||
|
*.out
|
||||||
|
*.pid
|
||||||
|
|
||||||
|
|
||||||
|
############################
|
||||||
|
# Logs and databases
|
||||||
|
############################
|
||||||
|
|
||||||
|
.tmp
|
||||||
|
*.log
|
||||||
|
*.sql
|
||||||
|
*.sqlite
|
||||||
|
*.sqlite3
|
||||||
|
|
||||||
|
|
||||||
|
############################
|
||||||
|
# Misc.
|
||||||
|
############################
|
||||||
|
|
||||||
|
*#
|
||||||
|
ssl
|
||||||
|
.idea
|
||||||
|
nbproject
|
||||||
|
public/uploads/*
|
||||||
|
!public/uploads/.gitkeep
|
||||||
|
|
||||||
|
############################
|
||||||
|
# Node.js
|
||||||
|
############################
|
||||||
|
|
||||||
|
lib-cov
|
||||||
|
lcov.info
|
||||||
|
pids
|
||||||
|
logs
|
||||||
|
results
|
||||||
|
node_modules
|
||||||
|
.node_history
|
||||||
|
|
||||||
|
############################
|
||||||
|
# Tests
|
||||||
|
############################
|
||||||
|
|
||||||
|
coverage
|
||||||
|
|
||||||
|
############################
|
||||||
|
# Strapi
|
||||||
|
############################
|
||||||
|
|
||||||
|
.env
|
||||||
|
license.txt
|
||||||
|
exports
|
||||||
|
.strapi
|
||||||
|
dist
|
||||||
|
build
|
||||||
|
.strapi-updater.json
|
||||||
|
|
8
.idea/.gitignore
vendored
8
.idea/.gitignore
vendored
|
@ -1,8 +0,0 @@
|
||||||
# Default ignored files
|
|
||||||
/shelf/
|
|
||||||
/workspace.xml
|
|
||||||
# Editor-based HTTP Client requests
|
|
||||||
/httpRequests/
|
|
||||||
# Datasource local storage ignored files
|
|
||||||
/dataSources/
|
|
||||||
/dataSources.local.xml
|
|
|
@ -1,560 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<module type="RUBY_MODULE" version="4">
|
|
||||||
<component name="FacetManager">
|
|
||||||
<facet type="RailsFacetType" name="Ruby on Rails">
|
|
||||||
<configuration>
|
|
||||||
<RAILS_FACET_CONFIG_ID NAME="RAILS_FACET_SUPPORT_REMOVED" VALUE="false" />
|
|
||||||
<RAILS_FACET_CONFIG_ID NAME="RAILS_TESTS_SOURCES_PATCHED" VALUE="true" />
|
|
||||||
<RAILS_FACET_CONFIG_ID NAME="RAILS_FACET_APPLICATION_ROOT" VALUE="$MODULE_DIR$" />
|
|
||||||
</configuration>
|
|
||||||
</facet>
|
|
||||||
</component>
|
|
||||||
<component name="ModuleRunConfigurationManager">
|
|
||||||
<shared />
|
|
||||||
</component>
|
|
||||||
<component name="NewModuleRootManager">
|
|
||||||
<content url="file://$MODULE_DIR$">
|
|
||||||
<sourceFolder url="file://$MODULE_DIR$/features" isTestSource="true" />
|
|
||||||
<sourceFolder url="file://$MODULE_DIR$/spec" isTestSource="true" />
|
|
||||||
<sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" />
|
|
||||||
<excludeFolder url="file://$MODULE_DIR$/.bundle" />
|
|
||||||
<excludeFolder url="file://$MODULE_DIR$/public/packs" />
|
|
||||||
<excludeFolder url="file://$MODULE_DIR$/vendor/bundle" />
|
|
||||||
<excludeFolder url="file://$MODULE_DIR$/vendor/cache" />
|
|
||||||
<excludeFolder url="file://$MODULE_DIR$/log" />
|
|
||||||
<excludeFolder url="file://$MODULE_DIR$/tmp" />
|
|
||||||
<excludeFolder url="file://$MODULE_DIR$/public/system" />
|
|
||||||
<excludeFolder url="file://$MODULE_DIR$/components" />
|
|
||||||
</content>
|
|
||||||
<orderEntry type="jdk" jdkName="rbenv: 2.7.1" jdkType="RUBY_SDK" />
|
|
||||||
<orderEntry type="sourceFolder" forTests="false" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="actioncable (v6.0.5, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="actionmailbox (v6.0.5, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="actionmailer (v6.0.5, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="actionpack (v6.0.5, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="actiontext (v6.0.5, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="actionview (v6.0.5, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="activeadmin (v2.12.0, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="activejob (v6.0.5, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="activemodel (v6.0.5, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="activerecord (v6.0.5, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="activestorage (v6.0.5, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="activesupport (v6.0.5, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="addressable (v2.8.0, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="arbre (v1.5.0, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="bcrypt (v3.1.17, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="bindex (v0.8.1, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="bootsnap (v1.11.1, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="builder (v3.2.4, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="bundler (v2.1.4, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="byebug (v11.1.3, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="capybara (v3.37.1, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="childprocess (v4.1.0, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="concurrent-ruby (v1.1.10, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="crass (v1.0.6, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="devise (v4.8.1, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="erubi (v1.10.0, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="ffi (v1.15.5, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="formtastic (v4.0.0, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="formtastic_i18n (v0.7.0, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="globalid (v1.0.0, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="has_scope (v0.8.0, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="i18n (v1.10.0, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="inherited_resources (v1.13.1, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="jbuilder (v2.11.5, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="jquery-rails (v4.4.0, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="kaminari (v1.2.2, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="kaminari-actionview (v1.2.2, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="kaminari-activerecord (v1.2.2, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="kaminari-core (v1.2.2, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="listen (v3.7.1, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="loofah (v2.18.0, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="mail (v2.7.1, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="marcel (v1.0.2, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="matrix (v0.4.2, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="method_source (v1.0.0, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="mini_mime (v1.1.2, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="mini_portile2 (v2.8.0, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="minitest (v5.15.0, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="msgpack (v1.5.1, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="nio4r (v2.5.8, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="nokogiri (v1.13.6, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="orm_adapter (v0.5.0, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="public_suffix (v4.0.7, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="puma (v4.3.12, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="racc (v1.6.0, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="rack (v2.2.3, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="rack-proxy (v0.7.2, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="rack-test (v1.1.0, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="rails (v6.0.5, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="rails-dom-testing (v2.0.3, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="rails-html-sanitizer (v1.4.2, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="rails_12factor (v0.0.3, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="rails_serve_static_assets (v0.0.5, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="rails_stdout_logging (v0.0.5, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="railties (v6.0.5, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="rake (v13.0.6, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="ransack (v3.1.0, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="rb-fsevent (v0.11.1, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="rb-inotify (v0.10.1, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="regexp_parser (v2.4.0, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="responders (v3.0.1, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="rexml (v3.2.5, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="ruby2_keywords (v0.0.5, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="rubyzip (v2.3.2, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="sass-rails (v6.0.0, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="sassc (v2.4.0, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="sassc-rails (v2.1.2, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="selenium-webdriver (v4.1.0, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="semantic_range (v3.0.0, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="spring (v2.1.1, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="spring-watcher-listen (v2.0.1, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="sprockets (v4.0.3, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="sprockets-rails (v3.4.2, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="sqlite3 (v1.4.2, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="thor (v1.2.1, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="thread_safe (v0.3.6, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="tilt (v2.0.10, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="turbolinks (v5.2.1, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="turbolinks-source (v5.2.0, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="tzinfo (v1.2.9, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="warden (v1.2.9, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="web-console (v4.2.0, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="webdrivers (v5.0.0, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="webpacker (v5.4.3, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="websocket-driver (v0.7.5, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="websocket-extensions (v0.1.5, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="xpath (v3.2.0, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
<orderEntry type="library" scope="PROVIDED" name="zeitwerk (v2.5.4, rbenv: 2.7.1) [gem]" level="application" />
|
|
||||||
</component>
|
|
||||||
<component name="RModuleSettingsStorage">
|
|
||||||
<LOAD_PATH number="0" />
|
|
||||||
<I18N_FOLDERS number="1" string0="$MODULE_DIR$/config/locales" />
|
|
||||||
</component>
|
|
||||||
<component name="RailsGeneratorsCache">
|
|
||||||
<option name="generators">
|
|
||||||
<list>
|
|
||||||
<option value="active_record:migration" />
|
|
||||||
<option value="active_record:model" />
|
|
||||||
<option value="active_record:observer" />
|
|
||||||
<option value="active_record:session_migration" />
|
|
||||||
<option value="controller" />
|
|
||||||
<option value="erb:controller" />
|
|
||||||
<option value="erb:mailer" />
|
|
||||||
<option value="erb:scaffold" />
|
|
||||||
<option value="generator" />
|
|
||||||
<option value="helper" />
|
|
||||||
<option value="integration_test" />
|
|
||||||
<option value="mailer" />
|
|
||||||
<option value="metal" />
|
|
||||||
<option value="migration" />
|
|
||||||
<option value="model" />
|
|
||||||
<option value="model_subclass" />
|
|
||||||
<option value="observer" />
|
|
||||||
<option value="performance_test" />
|
|
||||||
<option value="plugin" />
|
|
||||||
<option value="resource" />
|
|
||||||
<option value="scaffold" />
|
|
||||||
<option value="scaffold_controller" />
|
|
||||||
<option value="session_migration" />
|
|
||||||
<option value="stylesheets" />
|
|
||||||
<option value="test_unit:controller" />
|
|
||||||
<option value="test_unit:helper" />
|
|
||||||
<option value="test_unit:integration" />
|
|
||||||
<option value="test_unit:mailer" />
|
|
||||||
<option value="test_unit:model" />
|
|
||||||
<option value="test_unit:observer" />
|
|
||||||
<option value="test_unit:performance" />
|
|
||||||
<option value="test_unit:plugin" />
|
|
||||||
<option value="test_unit:scaffold" />
|
|
||||||
</list>
|
|
||||||
</option>
|
|
||||||
<option name="myGenerators">
|
|
||||||
<list>
|
|
||||||
<option value="active_record:migration" />
|
|
||||||
<option value="active_record:model" />
|
|
||||||
<option value="active_record:observer" />
|
|
||||||
<option value="active_record:session_migration" />
|
|
||||||
<option value="controller" />
|
|
||||||
<option value="erb:controller" />
|
|
||||||
<option value="erb:mailer" />
|
|
||||||
<option value="erb:scaffold" />
|
|
||||||
<option value="generator" />
|
|
||||||
<option value="helper" />
|
|
||||||
<option value="integration_test" />
|
|
||||||
<option value="mailer" />
|
|
||||||
<option value="metal" />
|
|
||||||
<option value="migration" />
|
|
||||||
<option value="model" />
|
|
||||||
<option value="model_subclass" />
|
|
||||||
<option value="observer" />
|
|
||||||
<option value="performance_test" />
|
|
||||||
<option value="plugin" />
|
|
||||||
<option value="resource" />
|
|
||||||
<option value="scaffold" />
|
|
||||||
<option value="scaffold_controller" />
|
|
||||||
<option value="session_migration" />
|
|
||||||
<option value="stylesheets" />
|
|
||||||
<option value="test_unit:controller" />
|
|
||||||
<option value="test_unit:helper" />
|
|
||||||
<option value="test_unit:integration" />
|
|
||||||
<option value="test_unit:mailer" />
|
|
||||||
<option value="test_unit:model" />
|
|
||||||
<option value="test_unit:observer" />
|
|
||||||
<option value="test_unit:performance" />
|
|
||||||
<option value="test_unit:plugin" />
|
|
||||||
<option value="test_unit:scaffold" />
|
|
||||||
</list>
|
|
||||||
</option>
|
|
||||||
</component>
|
|
||||||
<component name="RakeTasksCache">
|
|
||||||
<option name="myRootTask">
|
|
||||||
<RakeTaskImpl id="rake">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="List versions of all Rails frameworks and the environment" fullCommand="about" id="about" />
|
|
||||||
<RakeTaskImpl id="action_mailbox">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl id="ingress">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="Relay an inbound email from Exim to Action Mailbox (URL and INGRESS_PASSWORD required)" fullCommand="action_mailbox:ingress:exim" id="exim" />
|
|
||||||
<RakeTaskImpl description="Relay an inbound email from Postfix to Action Mailbox (URL and INGRESS_PASSWORD required)" fullCommand="action_mailbox:ingress:postfix" id="postfix" />
|
|
||||||
<RakeTaskImpl description="Relay an inbound email from Qmail to Action Mailbox (URL and INGRESS_PASSWORD required)" fullCommand="action_mailbox:ingress:qmail" id="qmail" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="action_mailbox:ingress:environment" id="environment" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl description="Copy over the migration" fullCommand="action_mailbox:install" id="install" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="action_mailbox:copy_migrations" id="copy_migrations" />
|
|
||||||
<RakeTaskImpl id="install">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="" fullCommand="action_mailbox:install:migrations" id="migrations" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl description="" fullCommand="action_mailbox:run_installer" id="run_installer" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl id="action_text">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="Copy over the migration, stylesheet, and JavaScript files" fullCommand="action_text:install" id="install" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="action_text:copy_migrations" id="copy_migrations" />
|
|
||||||
<RakeTaskImpl id="install">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="" fullCommand="action_text:install:migrations" id="migrations" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl description="" fullCommand="action_text:run_installer" id="run_installer" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl id="active_storage">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="Copy over the migration needed to the application" fullCommand="active_storage:install" id="install" />
|
|
||||||
<RakeTaskImpl id="install">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="" fullCommand="active_storage:install:migrations" id="migrations" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl description="" fullCommand="active_storage:update" id="update" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl id="app">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="Applies the template supplied by LOCATION=(/path/to/template) or URL" fullCommand="app:template" id="template" />
|
|
||||||
<RakeTaskImpl description="Update configs and some other initially generated files (or use just update:configs or update:bin)" fullCommand="app:update" id="update" />
|
|
||||||
<RakeTaskImpl id="templates">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="" fullCommand="app:templates:copy" id="copy" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl id="update">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="" fullCommand="app:update:active_storage" id="active_storage" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="app:update:bin" id="bin" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="app:update:configs" id="configs" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="app:update:upgrade_guide_info" id="upgrade_guide_info" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl id="assets">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="Remove old compiled assets" fullCommand="assets:clean[keep]" id="clean[keep]" />
|
|
||||||
<RakeTaskImpl description="Remove compiled assets" fullCommand="assets:clobber" id="clobber" />
|
|
||||||
<RakeTaskImpl description="Load asset compile environment" fullCommand="assets:environment" id="environment" />
|
|
||||||
<RakeTaskImpl description="Compile all the assets named in config.assets.precompile" fullCommand="assets:precompile" id="precompile" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="assets:clean" id="clean" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl id="cache_digests">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="Lookup first-level dependencies for TEMPLATE (like messages/show or comments/_comment.html)" fullCommand="cache_digests:dependencies" id="dependencies" />
|
|
||||||
<RakeTaskImpl description="Lookup nested dependencies for TEMPLATE (like messages/show or comments/_comment.html)" fullCommand="cache_digests:nested_dependencies" id="nested_dependencies" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl id="db">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="Creates the database from DATABASE_URL or config/database.yml for the current RAILS_ENV (use db:create:all to create all databases in the config). Without RAILS_ENV or when RAILS_ENV is development, it defaults to creating the development and test databases" fullCommand="db:create" id="create" />
|
|
||||||
<RakeTaskImpl description="Drops the database from DATABASE_URL or config/database.yml for the current RAILS_ENV (use db:drop:all to drop all databases in the config). Without RAILS_ENV or when RAILS_ENV is development, it defaults to dropping the development and test databases" fullCommand="db:drop" id="drop" />
|
|
||||||
<RakeTaskImpl id="environment">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="Set the environment value for the database" fullCommand="db:environment:set" id="set" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl id="fixtures">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="Loads fixtures into the current environment's database" fullCommand="db:fixtures:load" id="load" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="db:fixtures:identify" id="identify" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl description="Migrate the database (options: VERSION=x, VERBOSE=false, SCOPE=blog)" fullCommand="db:migrate" id="migrate" />
|
|
||||||
<RakeTaskImpl id="migrate">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="Display status of migrations" fullCommand="db:migrate:status" id="status" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="db:migrate:down" id="down" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="db:migrate:redo" id="redo" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="db:migrate:reset" id="reset" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="db:migrate:up" id="up" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl description="Runs setup if database does not exist, or runs migrations if it does" fullCommand="db:prepare" id="prepare" />
|
|
||||||
<RakeTaskImpl description="Rolls the schema back to the previous version (specify steps w/ STEP=n)" fullCommand="db:rollback" id="rollback" />
|
|
||||||
<RakeTaskImpl id="schema">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl id="cache">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="Clears a db/schema_cache.yml file" fullCommand="db:schema:cache:clear" id="clear" />
|
|
||||||
<RakeTaskImpl description="Creates a db/schema_cache.yml file" fullCommand="db:schema:cache:dump" id="dump" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl description="Creates a db/schema.rb file that is portable against any DB supported by Active Record" fullCommand="db:schema:dump" id="dump" />
|
|
||||||
<RakeTaskImpl description="Loads a schema.rb file into the database" fullCommand="db:schema:load" id="load" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="db:schema:load_if_ruby" id="load_if_ruby" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl description="Loads the seed data from db/seeds.rb" fullCommand="db:seed" id="seed" />
|
|
||||||
<RakeTaskImpl id="seed">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="Truncates tables of each database for current environment and loads the seeds" fullCommand="db:seed:replant" id="replant" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl description="Creates the database, loads the schema, and initializes with the seed data (use db:reset to also drop the database first)" fullCommand="db:setup" id="setup" />
|
|
||||||
<RakeTaskImpl id="structure">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="Dumps the database structure to db/structure.sql" fullCommand="db:structure:dump" id="dump" />
|
|
||||||
<RakeTaskImpl description="Recreates the databases from the structure.sql file" fullCommand="db:structure:load" id="load" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="db:structure:load_if_sql" id="load_if_sql" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl description="Retrieves the current schema version number" fullCommand="db:version" id="version" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="db:_dump" id="_dump" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="db:abort_if_pending_migrations" id="abort_if_pending_migrations" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="db:charset" id="charset" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="db:check_protected_environments" id="check_protected_environments" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="db:collation" id="collation" />
|
|
||||||
<RakeTaskImpl id="create">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="" fullCommand="db:create:all" id="all" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl id="drop">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="" fullCommand="db:drop:_unsafe" id="_unsafe" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="db:drop:all" id="all" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl description="" fullCommand="db:forward" id="forward" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="db:load_config" id="load_config" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="db:purge" id="purge" />
|
|
||||||
<RakeTaskImpl id="purge">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="" fullCommand="db:purge:all" id="all" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl description="" fullCommand="db:reset" id="reset" />
|
|
||||||
<RakeTaskImpl id="test">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="" fullCommand="db:test:load" id="load" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="db:test:load_schema" id="load_schema" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="db:test:load_structure" id="load_structure" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="db:test:prepare" id="prepare" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="db:test:purge" id="purge" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl description="" fullCommand="db:truncate_all" id="truncate_all" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl id="log">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="Truncates all/specified *.log files in log/ to zero bytes (specify which logs with LOGS=test,development)" fullCommand="log:clear" id="clear" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl description="Prints out your Rack middleware stack" fullCommand="middleware" id="middleware" />
|
|
||||||
<RakeTaskImpl description="Restart app by touching tmp/restart.txt" fullCommand="restart" id="restart" />
|
|
||||||
<RakeTaskImpl description="Generate a cryptographically secure secret key (this is typically used to generate a secret for cookie sessions)" fullCommand="secret" id="secret" />
|
|
||||||
<RakeTaskImpl description="Report code statistics (KLOCs, etc) from the application or engine" fullCommand="stats" id="stats" />
|
|
||||||
<RakeTaskImpl description="Runs all tests in test folder except system ones" fullCommand="test" id="test" />
|
|
||||||
<RakeTaskImpl id="test">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="Run tests quickly, but also reset db" fullCommand="test:db" id="db" />
|
|
||||||
<RakeTaskImpl description="Run system tests only" fullCommand="test:system" id="system" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="test:channels" id="channels" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="test:controllers" id="controllers" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="test:functionals" id="functionals" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="test:generators" id="generators" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="test:helpers" id="helpers" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="test:integration" id="integration" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="test:jobs" id="jobs" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="test:mailboxes" id="mailboxes" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="test:mailers" id="mailers" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="test:models" id="models" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="test:prepare" id="prepare" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="test:run" id="run" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="test:units" id="units" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl id="time">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="List all time zones, list by two-letter country code (`rails time:zones[US]`), or list by UTC offset (`rails time:zones[-8]`)" fullCommand="time:zones[country_or_offset]" id="zones[country_or_offset]" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="time:zones" id="zones" />
|
|
||||||
<RakeTaskImpl id="zones">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="" fullCommand="time:zones:all" id="all" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="time:zones:local" id="local" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="time:zones:us" id="us" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl id="tmp">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="Clear cache, socket and screenshot files from tmp/ (narrow w/ tmp:cache:clear, tmp:sockets:clear, tmp:screenshots:clear)" fullCommand="tmp:clear" id="clear" />
|
|
||||||
<RakeTaskImpl description="Creates tmp directories for cache, sockets, and pids" fullCommand="tmp:create" id="create" />
|
|
||||||
<RakeTaskImpl id="cache">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="" fullCommand="tmp:cache:clear" id="clear" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl id="pids">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="" fullCommand="tmp:pids:clear" id="clear" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl id="screenshots">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="" fullCommand="tmp:screenshots:clear" id="clear" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl id="sockets">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="" fullCommand="tmp:sockets:clear" id="clear" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl description="Lists all available tasks in Webpacker" fullCommand="webpacker" id="webpacker" />
|
|
||||||
<RakeTaskImpl id="webpacker">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="Installs Webpacker binstubs in this application" fullCommand="webpacker:binstubs" id="binstubs" />
|
|
||||||
<RakeTaskImpl description="Verifies that webpack & webpack-dev-server are present" fullCommand="webpacker:check_binstubs" id="check_binstubs" />
|
|
||||||
<RakeTaskImpl description="Verifies if Node.js is installed" fullCommand="webpacker:check_node" id="check_node" />
|
|
||||||
<RakeTaskImpl description="Verifies if Yarn is installed" fullCommand="webpacker:check_yarn" id="check_yarn" />
|
|
||||||
<RakeTaskImpl description="Remove old compiled webpacks" fullCommand="webpacker:clean[keep]" id="clean[keep]" />
|
|
||||||
<RakeTaskImpl description="Remove the webpack compiled output directory" fullCommand="webpacker:clobber" id="clobber" />
|
|
||||||
<RakeTaskImpl description="Compile JavaScript packs using webpack for production with digests" fullCommand="webpacker:compile" id="compile" />
|
|
||||||
<RakeTaskImpl description="Provide information on Webpacker's environment" fullCommand="webpacker:info" id="info" />
|
|
||||||
<RakeTaskImpl description="Install Webpacker in this application" fullCommand="webpacker:install" id="install" />
|
|
||||||
<RakeTaskImpl id="install">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="Install everything needed for Angular" fullCommand="webpacker:install:angular" id="angular" />
|
|
||||||
<RakeTaskImpl description="Install everything needed for Coffee" fullCommand="webpacker:install:coffee" id="coffee" />
|
|
||||||
<RakeTaskImpl description="Install everything needed for Elm" fullCommand="webpacker:install:elm" id="elm" />
|
|
||||||
<RakeTaskImpl description="Install everything needed for Erb" fullCommand="webpacker:install:erb" id="erb" />
|
|
||||||
<RakeTaskImpl description="Install everything needed for React" fullCommand="webpacker:install:react" id="react" />
|
|
||||||
<RakeTaskImpl description="Install everything needed for Stimulus" fullCommand="webpacker:install:stimulus" id="stimulus" />
|
|
||||||
<RakeTaskImpl description="Install everything needed for Svelte" fullCommand="webpacker:install:svelte" id="svelte" />
|
|
||||||
<RakeTaskImpl description="Install everything needed for Typescript" fullCommand="webpacker:install:typescript" id="typescript" />
|
|
||||||
<RakeTaskImpl description="Install everything needed for Vue" fullCommand="webpacker:install:vue" id="vue" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl description="Verifies if Webpacker is installed" fullCommand="webpacker:verify_install" id="verify_install" />
|
|
||||||
<RakeTaskImpl description="Support for older Rails versions" fullCommand="webpacker:yarn_install" id="yarn_install" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="webpacker:clean" id="clean" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl id="yarn">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="Install all JavaScript dependencies as specified via Yarn" fullCommand="yarn:install" id="install" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl id="zeitwerk">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="Checks project structure for Zeitwerk compatibility" fullCommand="zeitwerk:check" id="check" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl description="" fullCommand="default" id="default" />
|
|
||||||
<RakeTaskImpl id="dev">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="" fullCommand="dev:cache" id="cache" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl description="" fullCommand="environment" id="environment" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="initializers" id="initializers" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="notes" id="notes" />
|
|
||||||
<RakeTaskImpl id="notes">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="" fullCommand="notes:custom" id="custom" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="notes:fixme" id="fixme" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="notes:optimize" id="optimize" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="notes:todo" id="todo" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl id="railties">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl id="install">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="" fullCommand="railties:install:migrations" id="migrations" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl description="" fullCommand="routes" id="routes" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="tmp" id="tmp" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="tmp/cache" id="tmp/cache" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="tmp/cache/assets" id="tmp/cache/assets" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="tmp/pids" id="tmp/pids" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="tmp/sockets" id="tmp/sockets" />
|
|
||||||
<RakeTaskImpl id="webdrivers">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl id="chromedriver">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="" fullCommand="webdrivers:chromedriver:remove" id="remove" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="webdrivers:chromedriver:update" id="update" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="webdrivers:chromedriver:version" id="version" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl id="edgedriver">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="" fullCommand="webdrivers:edgedriver:remove" id="remove" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="webdrivers:edgedriver:update" id="update" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="webdrivers:edgedriver:version" id="version" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl id="geckodriver">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="" fullCommand="webdrivers:geckodriver:remove" id="remove" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="webdrivers:geckodriver:update" id="update" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="webdrivers:geckodriver:version" id="version" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
<RakeTaskImpl id="iedriver">
|
|
||||||
<subtasks>
|
|
||||||
<RakeTaskImpl description="" fullCommand="webdrivers:iedriver:remove" id="remove" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="webdrivers:iedriver:update" id="update" />
|
|
||||||
<RakeTaskImpl description="" fullCommand="webdrivers:iedriver:version" id="version" />
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
</subtasks>
|
|
||||||
</RakeTaskImpl>
|
|
||||||
</option>
|
|
||||||
</component>
|
|
||||||
</module>
|
|
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="ProjectRootManager" version="2" project-jdk-name="rbenv: 2.6.3" project-jdk-type="RUBY_SDK" />
|
|
||||||
</project>
|
|
|
@ -1,8 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="ProjectModuleManager">
|
|
||||||
<modules>
|
|
||||||
<module fileurl="file://$PROJECT_DIR$/.idea/contactUs.iml" filepath="$PROJECT_DIR$/.idea/contactUs.iml" />
|
|
||||||
</modules>
|
|
||||||
</component>
|
|
||||||
</project>
|
|
|
@ -1,6 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="VcsDirectoryMappings">
|
|
||||||
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
|
||||||
</component>
|
|
||||||
</project>
|
|
|
@ -1 +0,0 @@
|
||||||
2.7.1
|
|
40
Dockerfile
40
Dockerfile
|
@ -1,25 +1,19 @@
|
||||||
FROM ruby:3.1
|
FROM node:18-alpine3.18
|
||||||
|
# Installing libvips-dev for sharp Compatibility
|
||||||
|
RUN apk update && apk add --no-cache build-base gcc autoconf automake zlib-dev libpng-dev nasm bash vips-dev git
|
||||||
|
ARG NODE_ENV=production
|
||||||
|
ENV NODE_ENV=${NODE_ENV}
|
||||||
|
|
||||||
LABEL maintainer="bijan"
|
WORKDIR /opt/
|
||||||
|
COPY package.json yarn.lock ./
|
||||||
|
RUN yarn global add node-gyp
|
||||||
|
RUN yarn config set network-timeout 600000 -g && yarn install
|
||||||
|
ENV PATH /opt/node_modules/.bin:$PATH
|
||||||
|
|
||||||
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - && \
|
WORKDIR /opt/app
|
||||||
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list && \
|
COPY . .
|
||||||
curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \
|
RUN chown -R node:node /opt/app
|
||||||
apt-get update -qq && \
|
USER node
|
||||||
apt-get install -y vim nodejs sqlite3 libsqlite3-dev yarn && \
|
RUN ["yarn", "build"]
|
||||||
apt-get clean && \
|
EXPOSE 1337
|
||||||
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
CMD ["yarn", "start"]
|
||||||
|
|
||||||
RUN mkdir /app
|
|
||||||
WORKDIR /app
|
|
||||||
|
|
||||||
EXPOSE 3000
|
|
||||||
|
|
||||||
COPY Gemfile* package.json yarn.lock /app/
|
|
||||||
|
|
||||||
RUN gem install bundler -v 2.1.4 && \
|
|
||||||
bundle install --jobs 20
|
|
||||||
|
|
||||||
RUN bundle update
|
|
||||||
|
|
||||||
COPY . /app
|
|
61
Gemfile
61
Gemfile
|
@ -1,61 +0,0 @@
|
||||||
source 'https://rubygems.org'
|
|
||||||
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
|
||||||
|
|
||||||
ruby '3.1.5'
|
|
||||||
|
|
||||||
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main'
|
|
||||||
gem 'rails', '~> 6.0.5'
|
|
||||||
# Use sqlite3 as the database for Active Record
|
|
||||||
gem 'sqlite3', '~> 1.4'
|
|
||||||
# Use Puma as the app server
|
|
||||||
gem 'puma', '~> 4.1'
|
|
||||||
# Use SCSS for stylesheets
|
|
||||||
gem 'sass-rails', '>= 6'
|
|
||||||
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
|
|
||||||
gem 'webpacker', '~> 5.4', '>= 5.4.3'
|
|
||||||
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
|
|
||||||
gem 'turbolinks', '~> 5'
|
|
||||||
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
|
||||||
gem 'jbuilder', '~> 2.7'
|
|
||||||
# Use Redis adapter to run Action Cable in production
|
|
||||||
# gem 'redis', '~> 4.0'
|
|
||||||
# Use Active Model has_secure_password
|
|
||||||
# gem 'bcrypt', '~> 3.1.7'
|
|
||||||
|
|
||||||
# Use Active Storage variant
|
|
||||||
# gem 'image_processing', '~> 1.2'
|
|
||||||
|
|
||||||
# Reduces boot times through caching; required in config/boot.rb
|
|
||||||
gem 'bootsnap', '>= 1.4.2', require: false
|
|
||||||
gem 'rails_12factor', group: :production
|
|
||||||
gem 'psych', '< 4'
|
|
||||||
gem 'rack-cors'
|
|
||||||
|
|
||||||
group :development, :test do
|
|
||||||
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
|
||||||
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
|
|
||||||
end
|
|
||||||
|
|
||||||
group :development do
|
|
||||||
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
|
|
||||||
gem 'web-console', '>= 3.3.0'
|
|
||||||
gem 'listen', '~> 3.2'
|
|
||||||
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
|
||||||
gem 'spring'
|
|
||||||
gem 'spring-watcher-listen', '~> 2.0.0'
|
|
||||||
end
|
|
||||||
|
|
||||||
group :test do
|
|
||||||
# Adds support for Capybara system testing and selenium driver
|
|
||||||
gem 'capybara', '>= 2.15'
|
|
||||||
gem 'selenium-webdriver'
|
|
||||||
# Easy installation and use of web drivers to run system tests with browsers
|
|
||||||
gem 'webdrivers'
|
|
||||||
end
|
|
||||||
|
|
||||||
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
|
||||||
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
|
||||||
|
|
||||||
gem "devise", "~> 4.8"
|
|
||||||
|
|
||||||
gem "activeadmin", "~> 2.12"
|
|
298
Gemfile.lock
298
Gemfile.lock
|
@ -1,298 +0,0 @@
|
||||||
GEM
|
|
||||||
remote: https://rubygems.org/
|
|
||||||
specs:
|
|
||||||
actioncable (6.0.5)
|
|
||||||
actionpack (= 6.0.5)
|
|
||||||
nio4r (~> 2.0)
|
|
||||||
websocket-driver (>= 0.6.1)
|
|
||||||
actionmailbox (6.0.5)
|
|
||||||
actionpack (= 6.0.5)
|
|
||||||
activejob (= 6.0.5)
|
|
||||||
activerecord (= 6.0.5)
|
|
||||||
activestorage (= 6.0.5)
|
|
||||||
activesupport (= 6.0.5)
|
|
||||||
mail (>= 2.7.1)
|
|
||||||
actionmailer (6.0.5)
|
|
||||||
actionpack (= 6.0.5)
|
|
||||||
actionview (= 6.0.5)
|
|
||||||
activejob (= 6.0.5)
|
|
||||||
mail (~> 2.5, >= 2.5.4)
|
|
||||||
rails-dom-testing (~> 2.0)
|
|
||||||
actionpack (6.0.5)
|
|
||||||
actionview (= 6.0.5)
|
|
||||||
activesupport (= 6.0.5)
|
|
||||||
rack (~> 2.0, >= 2.0.8)
|
|
||||||
rack-test (>= 0.6.3)
|
|
||||||
rails-dom-testing (~> 2.0)
|
|
||||||
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
|
||||||
actiontext (6.0.5)
|
|
||||||
actionpack (= 6.0.5)
|
|
||||||
activerecord (= 6.0.5)
|
|
||||||
activestorage (= 6.0.5)
|
|
||||||
activesupport (= 6.0.5)
|
|
||||||
nokogiri (>= 1.8.5)
|
|
||||||
actionview (6.0.5)
|
|
||||||
activesupport (= 6.0.5)
|
|
||||||
builder (~> 3.1)
|
|
||||||
erubi (~> 1.4)
|
|
||||||
rails-dom-testing (~> 2.0)
|
|
||||||
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
|
||||||
activeadmin (2.12.0)
|
|
||||||
arbre (~> 1.2, >= 1.2.1)
|
|
||||||
formtastic (>= 3.1, < 5.0)
|
|
||||||
formtastic_i18n (~> 0.4)
|
|
||||||
inherited_resources (~> 1.7)
|
|
||||||
jquery-rails (~> 4.2)
|
|
||||||
kaminari (~> 1.0, >= 1.2.1)
|
|
||||||
railties (>= 6.0, < 7.1)
|
|
||||||
ransack (>= 2.1.1, < 4)
|
|
||||||
activejob (6.0.5)
|
|
||||||
activesupport (= 6.0.5)
|
|
||||||
globalid (>= 0.3.6)
|
|
||||||
activemodel (6.0.5)
|
|
||||||
activesupport (= 6.0.5)
|
|
||||||
activerecord (6.0.5)
|
|
||||||
activemodel (= 6.0.5)
|
|
||||||
activesupport (= 6.0.5)
|
|
||||||
activestorage (6.0.5)
|
|
||||||
actionpack (= 6.0.5)
|
|
||||||
activejob (= 6.0.5)
|
|
||||||
activerecord (= 6.0.5)
|
|
||||||
marcel (~> 1.0)
|
|
||||||
activesupport (6.0.5)
|
|
||||||
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
||||||
i18n (>= 0.7, < 2)
|
|
||||||
minitest (~> 5.1)
|
|
||||||
tzinfo (~> 1.1)
|
|
||||||
zeitwerk (~> 2.2, >= 2.2.2)
|
|
||||||
addressable (2.8.0)
|
|
||||||
public_suffix (>= 2.0.2, < 5.0)
|
|
||||||
arbre (1.5.0)
|
|
||||||
activesupport (>= 3.0.0, < 7.1)
|
|
||||||
ruby2_keywords (>= 0.0.2, < 1.0)
|
|
||||||
bcrypt (3.1.18)
|
|
||||||
bindex (0.8.1)
|
|
||||||
bootsnap (1.11.1)
|
|
||||||
msgpack (~> 1.2)
|
|
||||||
builder (3.2.4)
|
|
||||||
byebug (11.1.3)
|
|
||||||
capybara (3.37.1)
|
|
||||||
addressable
|
|
||||||
matrix
|
|
||||||
mini_mime (>= 0.1.3)
|
|
||||||
nokogiri (~> 1.8)
|
|
||||||
rack (>= 1.6.0)
|
|
||||||
rack-test (>= 0.6.3)
|
|
||||||
regexp_parser (>= 1.5, < 3.0)
|
|
||||||
xpath (~> 3.2)
|
|
||||||
childprocess (4.1.0)
|
|
||||||
concurrent-ruby (1.1.10)
|
|
||||||
crass (1.0.6)
|
|
||||||
devise (4.8.1)
|
|
||||||
bcrypt (~> 3.0)
|
|
||||||
orm_adapter (~> 0.1)
|
|
||||||
railties (>= 4.1.0)
|
|
||||||
responders
|
|
||||||
warden (~> 1.2.3)
|
|
||||||
erubi (1.10.0)
|
|
||||||
ffi (1.15.5)
|
|
||||||
formtastic (4.0.0)
|
|
||||||
actionpack (>= 5.2.0)
|
|
||||||
formtastic_i18n (0.7.0)
|
|
||||||
globalid (1.0.0)
|
|
||||||
activesupport (>= 5.0)
|
|
||||||
has_scope (0.8.0)
|
|
||||||
actionpack (>= 5.2)
|
|
||||||
activesupport (>= 5.2)
|
|
||||||
i18n (1.10.0)
|
|
||||||
concurrent-ruby (~> 1.0)
|
|
||||||
inherited_resources (1.13.1)
|
|
||||||
actionpack (>= 5.2, < 7.1)
|
|
||||||
has_scope (~> 0.6)
|
|
||||||
railties (>= 5.2, < 7.1)
|
|
||||||
responders (>= 2, < 4)
|
|
||||||
jbuilder (2.11.5)
|
|
||||||
actionview (>= 5.0.0)
|
|
||||||
activesupport (>= 5.0.0)
|
|
||||||
jquery-rails (4.5.0)
|
|
||||||
rails-dom-testing (>= 1, < 3)
|
|
||||||
railties (>= 4.2.0)
|
|
||||||
thor (>= 0.14, < 2.0)
|
|
||||||
kaminari (1.2.2)
|
|
||||||
activesupport (>= 4.1.0)
|
|
||||||
kaminari-actionview (= 1.2.2)
|
|
||||||
kaminari-activerecord (= 1.2.2)
|
|
||||||
kaminari-core (= 1.2.2)
|
|
||||||
kaminari-actionview (1.2.2)
|
|
||||||
actionview
|
|
||||||
kaminari-core (= 1.2.2)
|
|
||||||
kaminari-activerecord (1.2.2)
|
|
||||||
activerecord
|
|
||||||
kaminari-core (= 1.2.2)
|
|
||||||
kaminari-core (1.2.2)
|
|
||||||
listen (3.7.1)
|
|
||||||
rb-fsevent (~> 0.10, >= 0.10.3)
|
|
||||||
rb-inotify (~> 0.9, >= 0.9.10)
|
|
||||||
loofah (2.18.0)
|
|
||||||
crass (~> 1.0.2)
|
|
||||||
nokogiri (>= 1.5.9)
|
|
||||||
mail (2.7.1)
|
|
||||||
mini_mime (>= 0.1.1)
|
|
||||||
marcel (1.0.2)
|
|
||||||
matrix (0.4.2)
|
|
||||||
method_source (1.0.0)
|
|
||||||
mini_mime (1.1.2)
|
|
||||||
mini_portile2 (2.8.0)
|
|
||||||
minitest (5.15.0)
|
|
||||||
msgpack (1.5.1)
|
|
||||||
nio4r (2.5.8)
|
|
||||||
nokogiri (1.13.6)
|
|
||||||
mini_portile2 (~> 2.8.0)
|
|
||||||
racc (~> 1.4)
|
|
||||||
orm_adapter (0.5.0)
|
|
||||||
public_suffix (4.0.7)
|
|
||||||
puma (4.3.12)
|
|
||||||
nio4r (~> 2.0)
|
|
||||||
racc (1.6.0)
|
|
||||||
rack (2.2.3)
|
|
||||||
rack-cors (1.1.1)
|
|
||||||
rack (>= 2.0.0)
|
|
||||||
rack-proxy (0.7.2)
|
|
||||||
rack
|
|
||||||
rack-test (1.1.0)
|
|
||||||
rack (>= 1.0, < 3)
|
|
||||||
rails (6.0.5)
|
|
||||||
actioncable (= 6.0.5)
|
|
||||||
actionmailbox (= 6.0.5)
|
|
||||||
actionmailer (= 6.0.5)
|
|
||||||
actionpack (= 6.0.5)
|
|
||||||
actiontext (= 6.0.5)
|
|
||||||
actionview (= 6.0.5)
|
|
||||||
activejob (= 6.0.5)
|
|
||||||
activemodel (= 6.0.5)
|
|
||||||
activerecord (= 6.0.5)
|
|
||||||
activestorage (= 6.0.5)
|
|
||||||
activesupport (= 6.0.5)
|
|
||||||
bundler (>= 1.3.0)
|
|
||||||
railties (= 6.0.5)
|
|
||||||
sprockets-rails (>= 2.0.0)
|
|
||||||
rails-dom-testing (2.0.3)
|
|
||||||
activesupport (>= 4.2.0)
|
|
||||||
nokogiri (>= 1.6)
|
|
||||||
rails-html-sanitizer (1.4.2)
|
|
||||||
loofah (~> 2.3)
|
|
||||||
rails_12factor (0.0.3)
|
|
||||||
rails_serve_static_assets
|
|
||||||
rails_stdout_logging
|
|
||||||
rails_serve_static_assets (0.0.5)
|
|
||||||
rails_stdout_logging (0.0.5)
|
|
||||||
railties (6.0.5)
|
|
||||||
actionpack (= 6.0.5)
|
|
||||||
activesupport (= 6.0.5)
|
|
||||||
method_source
|
|
||||||
rake (>= 0.8.7)
|
|
||||||
thor (>= 0.20.3, < 2.0)
|
|
||||||
rake (13.0.6)
|
|
||||||
ransack (3.1.0)
|
|
||||||
activerecord (>= 6.0.4)
|
|
||||||
activesupport (>= 6.0.4)
|
|
||||||
i18n
|
|
||||||
rb-fsevent (0.11.1)
|
|
||||||
rb-inotify (0.10.1)
|
|
||||||
ffi (~> 1.0)
|
|
||||||
regexp_parser (2.4.0)
|
|
||||||
responders (3.0.1)
|
|
||||||
actionpack (>= 5.0)
|
|
||||||
railties (>= 5.0)
|
|
||||||
rexml (3.2.5)
|
|
||||||
ruby2_keywords (0.0.5)
|
|
||||||
rubyzip (2.3.2)
|
|
||||||
sass-rails (6.0.0)
|
|
||||||
sassc-rails (~> 2.1, >= 2.1.1)
|
|
||||||
sassc (2.4.0)
|
|
||||||
ffi (~> 1.9)
|
|
||||||
sassc-rails (2.1.2)
|
|
||||||
railties (>= 4.0.0)
|
|
||||||
sassc (>= 2.0)
|
|
||||||
sprockets (> 3.0)
|
|
||||||
sprockets-rails
|
|
||||||
tilt
|
|
||||||
selenium-webdriver (4.1.0)
|
|
||||||
childprocess (>= 0.5, < 5.0)
|
|
||||||
rexml (~> 3.2, >= 3.2.5)
|
|
||||||
rubyzip (>= 1.2.2)
|
|
||||||
semantic_range (3.0.0)
|
|
||||||
spring (2.1.1)
|
|
||||||
spring-watcher-listen (2.0.1)
|
|
||||||
listen (>= 2.7, < 4.0)
|
|
||||||
spring (>= 1.2, < 3.0)
|
|
||||||
sprockets (4.0.3)
|
|
||||||
concurrent-ruby (~> 1.0)
|
|
||||||
rack (> 1, < 3)
|
|
||||||
sprockets-rails (3.4.2)
|
|
||||||
actionpack (>= 5.2)
|
|
||||||
activesupport (>= 5.2)
|
|
||||||
sprockets (>= 3.0.0)
|
|
||||||
sqlite3 (1.4.2)
|
|
||||||
thor (1.2.1)
|
|
||||||
thread_safe (0.3.6)
|
|
||||||
tilt (2.0.10)
|
|
||||||
turbolinks (5.2.1)
|
|
||||||
turbolinks-source (~> 5.2)
|
|
||||||
turbolinks-source (5.2.0)
|
|
||||||
tzinfo (1.2.9)
|
|
||||||
thread_safe (~> 0.1)
|
|
||||||
warden (1.2.9)
|
|
||||||
rack (>= 2.0.9)
|
|
||||||
web-console (4.2.0)
|
|
||||||
actionview (>= 6.0.0)
|
|
||||||
activemodel (>= 6.0.0)
|
|
||||||
bindex (>= 0.4.0)
|
|
||||||
railties (>= 6.0.0)
|
|
||||||
webdrivers (5.0.0)
|
|
||||||
nokogiri (~> 1.6)
|
|
||||||
rubyzip (>= 1.3.0)
|
|
||||||
selenium-webdriver (~> 4.0)
|
|
||||||
webpacker (5.4.3)
|
|
||||||
activesupport (>= 5.2)
|
|
||||||
rack-proxy (>= 0.6.1)
|
|
||||||
railties (>= 5.2)
|
|
||||||
semantic_range (>= 2.3.0)
|
|
||||||
websocket-driver (0.7.5)
|
|
||||||
websocket-extensions (>= 0.1.0)
|
|
||||||
websocket-extensions (0.1.5)
|
|
||||||
xpath (3.2.0)
|
|
||||||
nokogiri (~> 1.8)
|
|
||||||
zeitwerk (2.5.4)
|
|
||||||
|
|
||||||
PLATFORMS
|
|
||||||
ruby
|
|
||||||
|
|
||||||
DEPENDENCIES
|
|
||||||
activeadmin (~> 2.12)
|
|
||||||
bootsnap (>= 1.4.2)
|
|
||||||
byebug
|
|
||||||
capybara (>= 2.15)
|
|
||||||
devise (~> 4.8)
|
|
||||||
jbuilder (~> 2.7)
|
|
||||||
listen (~> 3.2)
|
|
||||||
puma (~> 4.1)
|
|
||||||
rack-cors
|
|
||||||
rails (~> 6.0.5)
|
|
||||||
rails_12factor
|
|
||||||
sass-rails (>= 6)
|
|
||||||
selenium-webdriver
|
|
||||||
spring
|
|
||||||
spring-watcher-listen (~> 2.0.0)
|
|
||||||
sqlite3 (~> 1.4)
|
|
||||||
turbolinks (~> 5)
|
|
||||||
tzinfo-data
|
|
||||||
web-console (>= 3.3.0)
|
|
||||||
webdrivers
|
|
||||||
webpacker (~> 5.4, >= 5.4.3)
|
|
||||||
|
|
||||||
RUBY VERSION
|
|
||||||
ruby 2.7.1p83
|
|
||||||
|
|
||||||
BUNDLED WITH
|
|
||||||
2.1.4
|
|
59
README.md
59
README.md
|
@ -1,24 +1,57 @@
|
||||||
# README
|
# 🚀 Getting started with Strapi
|
||||||
|
|
||||||
This README would normally document whatever steps are necessary to get the
|
Strapi comes with a full featured [Command Line Interface](https://docs.strapi.io/dev-docs/cli) (CLI) which lets you scaffold and manage your project in seconds.
|
||||||
application up and running.
|
|
||||||
|
|
||||||
Things you may want to cover:
|
### `develop`
|
||||||
|
|
||||||
* Ruby version
|
Start your Strapi application with autoReload enabled. [Learn more](https://docs.strapi.io/dev-docs/cli#strapi-develop)
|
||||||
|
|
||||||
* System dependencies
|
```
|
||||||
|
npm run develop
|
||||||
|
# or
|
||||||
|
yarn develop
|
||||||
|
```
|
||||||
|
|
||||||
* Configuration
|
### `start`
|
||||||
|
|
||||||
* Database creation
|
Start your Strapi application with autoReload disabled. [Learn more](https://docs.strapi.io/dev-docs/cli#strapi-start)
|
||||||
|
|
||||||
* Database initialization
|
```
|
||||||
|
npm run start
|
||||||
|
# or
|
||||||
|
yarn start
|
||||||
|
```
|
||||||
|
|
||||||
* How to run the test suite
|
### `build`
|
||||||
|
|
||||||
* Services (job queues, cache servers, search engines, etc.)
|
Build your admin panel. [Learn more](https://docs.strapi.io/dev-docs/cli#strapi-build)
|
||||||
|
|
||||||
* Deployment instructions
|
```
|
||||||
|
npm run build
|
||||||
|
# or
|
||||||
|
yarn build
|
||||||
|
```
|
||||||
|
|
||||||
* ...
|
## ⚙️ Deployment
|
||||||
|
|
||||||
|
Strapi gives you many possible deployment options for your project including [Strapi Cloud](https://cloud.strapi.io). Browse the [deployment section of the documentation](https://docs.strapi.io/dev-docs/deployment) to find the best solution for your use case.
|
||||||
|
|
||||||
|
## 📚 Learn more
|
||||||
|
|
||||||
|
- [Resource center](https://strapi.io/resource-center) - Strapi resource center.
|
||||||
|
- [Strapi documentation](https://docs.strapi.io) - Official Strapi documentation.
|
||||||
|
- [Strapi tutorials](https://strapi.io/tutorials) - List of tutorials made by the core team and the community.
|
||||||
|
- [Strapi blog](https://strapi.io/blog) - Official Strapi blog containing articles made by the Strapi team and the community.
|
||||||
|
- [Changelog](https://strapi.io/changelog) - Find out about the Strapi product updates, new features and general improvements.
|
||||||
|
|
||||||
|
Feel free to check out the [Strapi GitHub repository](https://github.com/strapi/strapi). Your feedback and contributions are welcome!
|
||||||
|
|
||||||
|
## ✨ Community
|
||||||
|
|
||||||
|
- [Discord](https://discord.strapi.io) - Come chat with the Strapi community including the core team.
|
||||||
|
- [Forum](https://forum.strapi.io/) - Place to discuss, ask questions and find answers, show your Strapi project and get feedback or just talk with other Community members.
|
||||||
|
- [Awesome Strapi](https://github.com/strapi/awesome-strapi) - A curated list of awesome things related to Strapi.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<sub>🤫 Psst! [Strapi is hiring](https://strapi.io/careers).</sub>
|
||||||
|
|
6
Rakefile
6
Rakefile
|
@ -1,6 +0,0 @@
|
||||||
# Add your own tasks in files placed in lib/tasks ending in .rake,
|
|
||||||
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
|
|
||||||
|
|
||||||
require_relative 'config/application'
|
|
||||||
|
|
||||||
Rails.application.load_tasks
|
|
|
@ -1,28 +0,0 @@
|
||||||
ActiveAdmin.register AdminUser do
|
|
||||||
permit_params :email, :password, :password_confirmation
|
|
||||||
|
|
||||||
index do
|
|
||||||
selectable_column
|
|
||||||
id_column
|
|
||||||
column :email
|
|
||||||
column :current_sign_in_at
|
|
||||||
column :sign_in_count
|
|
||||||
column :created_at
|
|
||||||
actions
|
|
||||||
end
|
|
||||||
|
|
||||||
filter :email
|
|
||||||
filter :current_sign_in_at
|
|
||||||
filter :sign_in_count
|
|
||||||
filter :created_at
|
|
||||||
|
|
||||||
form do |f|
|
|
||||||
f.inputs do
|
|
||||||
f.input :email
|
|
||||||
f.input :password
|
|
||||||
f.input :password_confirmation
|
|
||||||
end
|
|
||||||
f.actions
|
|
||||||
end
|
|
||||||
|
|
||||||
end
|
|
|
@ -1,33 +0,0 @@
|
||||||
# frozen_string_literal: true
|
|
||||||
ActiveAdmin.register_page "Dashboard" do
|
|
||||||
menu priority: 1, label: proc { I18n.t("active_admin.dashboard") }
|
|
||||||
|
|
||||||
content title: proc { I18n.t("active_admin.dashboard") } do
|
|
||||||
div class: "blank_slate_container", id: "dashboard_default_message" do
|
|
||||||
span class: "blank_slate" do
|
|
||||||
span I18n.t("active_admin.dashboard_welcome.welcome")
|
|
||||||
small I18n.t("active_admin.dashboard_welcome.call_to_action")
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
# Here is an example of a simple dashboard with columns and panels.
|
|
||||||
#
|
|
||||||
# columns do
|
|
||||||
# column do
|
|
||||||
# panel "Recent Posts" do
|
|
||||||
# ul do
|
|
||||||
# Post.recent(5).map do |post|
|
|
||||||
# li link_to(post.title, admin_post_path(post))
|
|
||||||
# end
|
|
||||||
# end
|
|
||||||
# end
|
|
||||||
# end
|
|
||||||
|
|
||||||
# column do
|
|
||||||
# panel "Info" do
|
|
||||||
# para "Welcome to ActiveAdmin."
|
|
||||||
# end
|
|
||||||
# end
|
|
||||||
# end
|
|
||||||
end # content
|
|
||||||
end
|
|
|
@ -1,21 +0,0 @@
|
||||||
ActiveAdmin.register Email do
|
|
||||||
csv do
|
|
||||||
column :email
|
|
||||||
# preserve case
|
|
||||||
end
|
|
||||||
# See permitted parameters documentation:
|
|
||||||
# https://github.com/activeadmin/activeadmin/blob/master/docs/2-resource-customization.md#setting-up-strong-parameters
|
|
||||||
#
|
|
||||||
# Uncomment all parameters which should be permitted for assignment
|
|
||||||
#
|
|
||||||
permit_params :email
|
|
||||||
#
|
|
||||||
# or
|
|
||||||
#
|
|
||||||
# permit_params do
|
|
||||||
# permitted = [:title, :description, :email, :phone]
|
|
||||||
# permitted << :other if params[:action] == 'create' && current_user.admin?
|
|
||||||
# permitted
|
|
||||||
# end
|
|
||||||
|
|
||||||
end
|
|
|
@ -1,36 +0,0 @@
|
||||||
ActiveAdmin.register Message do
|
|
||||||
permit_params :title, :description, :phone, :name, :email
|
|
||||||
csv do
|
|
||||||
column :title
|
|
||||||
column(:name)
|
|
||||||
column(:email)
|
|
||||||
column(:phone)
|
|
||||||
column(:description)
|
|
||||||
# preserve case
|
|
||||||
end
|
|
||||||
# See permitted parameters documentation:
|
|
||||||
# https://github.com/activeadmin/activeadmin/blob/master/docs/2-resource-customization.md#setting-up-strong-parameters
|
|
||||||
#
|
|
||||||
# Uncomment all parameters which should be permitted for assignment
|
|
||||||
#
|
|
||||||
permit_params :title, :name, :description, :email, :phone
|
|
||||||
|
|
||||||
controller do
|
|
||||||
def destroy
|
|
||||||
Message.destroy(params[:id])
|
|
||||||
flash[:notice] = "Message deleted successfully!"
|
|
||||||
redirect_to admin_messages_path
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
|
|
||||||
#
|
|
||||||
# or
|
|
||||||
#
|
|
||||||
# permit_params do
|
|
||||||
# permitted = [:title, :description, :email, :phone]
|
|
||||||
# permitted << :other if params[:action] == 'create' && current_user.admin?
|
|
||||||
# permitted
|
|
||||||
# end
|
|
||||||
actions :index, :show, :edit, :destroy
|
|
||||||
end
|
|
|
@ -1,2 +0,0 @@
|
||||||
//= link_tree ../images
|
|
||||||
//= link_directory ../stylesheets .css
|
|
|
@ -1,15 +0,0 @@
|
||||||
/*
|
|
||||||
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
|
||||||
* listed below.
|
|
||||||
*
|
|
||||||
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
|
|
||||||
* vendor/assets/stylesheets directory can be referenced here using a relative path.
|
|
||||||
*
|
|
||||||
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
|
|
||||||
* compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
|
|
||||||
* files in this directory. Styles in this file should be added after the last require_* statement.
|
|
||||||
* It is generally better to create a new file per style scope.
|
|
||||||
*
|
|
||||||
*= require_tree .
|
|
||||||
*= require_self
|
|
||||||
*/
|
|
|
@ -1,3 +0,0 @@
|
||||||
// Place all the styles related to the email controller here.
|
|
||||||
// They will automatically be included in application.css.
|
|
||||||
// You can use Sass (SCSS) here: https://sass-lang.com/
|
|
|
@ -1,3 +0,0 @@
|
||||||
// Place all the styles related to the Messages controller here.
|
|
||||||
// They will automatically be included in application.css.
|
|
||||||
// You can use Sass (SCSS) here: https://sass-lang.com/
|
|
|
@ -1,4 +0,0 @@
|
||||||
module ApplicationCable
|
|
||||||
class Channel < ActionCable::Channel::Base
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -1,4 +0,0 @@
|
||||||
module ApplicationCable
|
|
||||||
class Connection < ActionCable::Connection::Base
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -1,2 +0,0 @@
|
||||||
class ApplicationController < ActionController::Base
|
|
||||||
end
|
|
|
@ -1,40 +0,0 @@
|
||||||
require 'uri'
|
|
||||||
require 'net/http'
|
|
||||||
|
|
||||||
class EmailController < ApplicationController
|
|
||||||
skip_before_action :verify_authenticity_token
|
|
||||||
def index
|
|
||||||
end
|
|
||||||
|
|
||||||
def create
|
|
||||||
response = requestToNewsLetter(params[:email])
|
|
||||||
@email = Email.create(message_params)
|
|
||||||
render json: response.body, status: response.code
|
|
||||||
end
|
|
||||||
|
|
||||||
def requestToNewsLetter(email)
|
|
||||||
$stdout.sync = true
|
|
||||||
uri = URI('https://listmonk.bitium.agency/api/subscribers')
|
|
||||||
begin
|
|
||||||
# Set up the request
|
|
||||||
request = Net::HTTP::Post.new(uri,{'Content-Type' => 'application/json'})
|
|
||||||
request.basic_auth("newsletter", "7c221c667054e442")
|
|
||||||
request.body = {
|
|
||||||
"email": email,
|
|
||||||
"name": "Subscriber",
|
|
||||||
"lists": [
|
|
||||||
3
|
|
||||||
]
|
|
||||||
}.to_json
|
|
||||||
response = Net::HTTP.start(uri.hostname, uri.port, use_ssl: true) do |http|
|
|
||||||
http.request(request)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
return response
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
def message_params
|
|
||||||
params.permit(:email)
|
|
||||||
end
|
|
|
@ -1,18 +0,0 @@
|
||||||
class MessagesController < ApplicationController
|
|
||||||
skip_before_action :verify_authenticity_token
|
|
||||||
|
|
||||||
|
|
||||||
def create
|
|
||||||
if (params[:title].try(:length) || 10) > 300 || (params[:name].try(:length) || 100) > 50 || (params[:description].try(:length) || 10) > 1000 || (params[:email].try(:length) || 0) < 1
|
|
||||||
render json: {}, status: 400
|
|
||||||
else
|
|
||||||
@message = Message.create(message_params)
|
|
||||||
render json: {}, status: :created
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
def message_params
|
|
||||||
params.permit(:title, :phone, :description, :email, :name)
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -1,2 +0,0 @@
|
||||||
module ApplicationHelper
|
|
||||||
end
|
|
|
@ -1,2 +0,0 @@
|
||||||
module EmailHelper
|
|
||||||
end
|
|
|
@ -1,2 +0,0 @@
|
||||||
module MessagesHelper
|
|
||||||
end
|
|
|
@ -1,6 +0,0 @@
|
||||||
// Action Cable provides the framework to deal with WebSockets in Rails.
|
|
||||||
// You can generate new channels where WebSocket features live using the `rails generate channel` command.
|
|
||||||
|
|
||||||
import { createConsumer } from "@rails/actioncable"
|
|
||||||
|
|
||||||
export default createConsumer()
|
|
|
@ -1,5 +0,0 @@
|
||||||
// Load all the channels within this directory and all subdirectories.
|
|
||||||
// Channel files must be named *_channel.js.
|
|
||||||
|
|
||||||
const channels = require.context('.', true, /_channel\.js$/)
|
|
||||||
channels.keys().forEach(channels)
|
|
|
@ -1,5 +0,0 @@
|
||||||
// Load Active Admin's styles into Webpacker,
|
|
||||||
// see `active_admin.scss` for customization.
|
|
||||||
import "../stylesheets/active_admin";
|
|
||||||
|
|
||||||
import "@activeadmin/activeadmin";
|
|
|
@ -1,2 +0,0 @@
|
||||||
/* Active Admin Print Stylesheet */
|
|
||||||
@import "~@activeadmin/activeadmin/src/scss/print";
|
|
|
@ -1,19 +0,0 @@
|
||||||
// This file is automatically compiled by Webpack, along with any other files
|
|
||||||
// present in this directory. You're encouraged to place your actual application logic in
|
|
||||||
// a relevant structure within app/javascript and only use these pack files to reference
|
|
||||||
// that code so it'll be compiled.
|
|
||||||
|
|
||||||
require("@rails/ujs").start()
|
|
||||||
require("turbolinks").start()
|
|
||||||
require("@rails/activestorage").start()
|
|
||||||
require("channels")
|
|
||||||
import "styles/application.scss"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Uncomment to copy all static images under ../images to the output folder and reference
|
|
||||||
// them with the image_pack_tag helper in views (e.g <%= image_pack_tag 'rails.png' %>)
|
|
||||||
// or the `imagePath` JavaScript helper below.
|
|
||||||
//
|
|
||||||
// const images = require.context('../images', true)
|
|
||||||
// const imagePath = (name) => images(name, true)
|
|
|
@ -1,17 +0,0 @@
|
||||||
// Sass variable overrides must be declared before loading up Active Admin's styles.
|
|
||||||
//
|
|
||||||
// To view the variables that Active Admin provides, take a look at
|
|
||||||
// `app/assets/stylesheets/active_admin/mixins/_variables.scss` in the
|
|
||||||
// Active Admin source.
|
|
||||||
//
|
|
||||||
// For example, to change the sidebar width:
|
|
||||||
// $sidebar-width: 242px;
|
|
||||||
|
|
||||||
// Active Admin's got SASS!
|
|
||||||
@import "~@activeadmin/activeadmin/src/scss/mixins";
|
|
||||||
@import "~@activeadmin/activeadmin/src/scss/base";
|
|
||||||
|
|
||||||
// Overriding any non-variable Sass must be done after the fact.
|
|
||||||
// For example, to change the default status-tag color:
|
|
||||||
//
|
|
||||||
// .status_tag { background: #6090DB; }
|
|
|
@ -1,7 +0,0 @@
|
||||||
class ApplicationJob < ActiveJob::Base
|
|
||||||
# Automatically retry jobs that encountered a deadlock
|
|
||||||
# retry_on ActiveRecord::Deadlocked
|
|
||||||
|
|
||||||
# Most jobs are safe to ignore if the underlying records are no longer available
|
|
||||||
# discard_on ActiveJob::DeserializationError
|
|
||||||
end
|
|
|
@ -1,4 +0,0 @@
|
||||||
class ApplicationMailer < ActionMailer::Base
|
|
||||||
default from: 'from@example.com'
|
|
||||||
layout 'mailer'
|
|
||||||
end
|
|
|
@ -1,6 +0,0 @@
|
||||||
class AdminUser < ApplicationRecord
|
|
||||||
# Include default devise modules. Others available are:
|
|
||||||
# :confirmable, :lockable, :timeoutable, :trackable and :omniauthable
|
|
||||||
devise :database_authenticatable,
|
|
||||||
:recoverable, :rememberable, :validatable
|
|
||||||
end
|
|
|
@ -1,3 +0,0 @@
|
||||||
class ApplicationRecord < ActiveRecord::Base
|
|
||||||
self.abstract_class = true
|
|
||||||
end
|
|
|
@ -1,2 +0,0 @@
|
||||||
class Email < ApplicationRecord
|
|
||||||
end
|
|
|
@ -1,2 +0,0 @@
|
||||||
class Message < ApplicationRecord
|
|
||||||
end
|
|
|
@ -1,2 +0,0 @@
|
||||||
<h1>Email#index</h1>
|
|
||||||
<p>Find me in app/views/email/index.html.erb</p>
|
|
|
@ -1,15 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>ContactUs</title>
|
|
||||||
<%= csrf_meta_tags %>
|
|
||||||
<%= csp_meta_tag %>
|
|
||||||
|
|
||||||
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>
|
|
||||||
<%= javascript_pack_tag 'application', 'data-turbolinks-track': 'reload' %>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<%= yield %>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,13 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
||||||
<style>
|
|
||||||
/* Email styles need to be inline */
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<%= yield %>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1 +0,0 @@
|
||||||
<%= yield %>
|
|
|
@ -1,82 +0,0 @@
|
||||||
module.exports = function(api) {
|
|
||||||
var validEnv = ['development', 'test', 'production']
|
|
||||||
var currentEnv = api.env()
|
|
||||||
var isDevelopmentEnv = api.env('development')
|
|
||||||
var isProductionEnv = api.env('production')
|
|
||||||
var isTestEnv = api.env('test')
|
|
||||||
|
|
||||||
if (!validEnv.includes(currentEnv)) {
|
|
||||||
throw new Error(
|
|
||||||
'Please specify a valid `NODE_ENV` or ' +
|
|
||||||
'`BABEL_ENV` environment variables. Valid values are "development", ' +
|
|
||||||
'"test", and "production". Instead, received: ' +
|
|
||||||
JSON.stringify(currentEnv) +
|
|
||||||
'.'
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
presets: [
|
|
||||||
isTestEnv && [
|
|
||||||
'@babel/preset-env',
|
|
||||||
{
|
|
||||||
targets: {
|
|
||||||
node: 'current'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
(isProductionEnv || isDevelopmentEnv) && [
|
|
||||||
'@babel/preset-env',
|
|
||||||
{
|
|
||||||
forceAllTransforms: true,
|
|
||||||
useBuiltIns: 'entry',
|
|
||||||
corejs: 3,
|
|
||||||
modules: false,
|
|
||||||
exclude: ['transform-typeof-symbol']
|
|
||||||
}
|
|
||||||
]
|
|
||||||
].filter(Boolean),
|
|
||||||
plugins: [
|
|
||||||
'babel-plugin-macros',
|
|
||||||
'@babel/plugin-syntax-dynamic-import',
|
|
||||||
isTestEnv && 'babel-plugin-dynamic-import-node',
|
|
||||||
'@babel/plugin-transform-destructuring',
|
|
||||||
[
|
|
||||||
'@babel/plugin-proposal-class-properties',
|
|
||||||
{
|
|
||||||
loose: true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
[
|
|
||||||
'@babel/plugin-proposal-object-rest-spread',
|
|
||||||
{
|
|
||||||
useBuiltIns: true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
[
|
|
||||||
'@babel/plugin-proposal-private-methods',
|
|
||||||
{
|
|
||||||
loose: true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
[
|
|
||||||
'@babel/plugin-proposal-private-property-in-object',
|
|
||||||
{
|
|
||||||
loose: true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
[
|
|
||||||
'@babel/plugin-transform-runtime',
|
|
||||||
{
|
|
||||||
helpers: false
|
|
||||||
}
|
|
||||||
],
|
|
||||||
[
|
|
||||||
'@babel/plugin-transform-regenerator',
|
|
||||||
{
|
|
||||||
async: false
|
|
||||||
}
|
|
||||||
]
|
|
||||||
].filter(Boolean)
|
|
||||||
}
|
|
||||||
}
|
|
114
bin/bundle
114
bin/bundle
|
@ -1,114 +0,0 @@
|
||||||
#!/usr/bin/env ruby
|
|
||||||
# frozen_string_literal: true
|
|
||||||
|
|
||||||
#
|
|
||||||
# This file was generated by Bundler.
|
|
||||||
#
|
|
||||||
# The application 'bundle' is installed as part of a gem, and
|
|
||||||
# this file is here to facilitate running it.
|
|
||||||
#
|
|
||||||
|
|
||||||
require "rubygems"
|
|
||||||
|
|
||||||
m = Module.new do
|
|
||||||
module_function
|
|
||||||
|
|
||||||
def invoked_as_script?
|
|
||||||
File.expand_path($0) == File.expand_path(__FILE__)
|
|
||||||
end
|
|
||||||
|
|
||||||
def env_var_version
|
|
||||||
ENV["BUNDLER_VERSION"]
|
|
||||||
end
|
|
||||||
|
|
||||||
def cli_arg_version
|
|
||||||
return unless invoked_as_script? # don't want to hijack other binstubs
|
|
||||||
return unless "update".start_with?(ARGV.first || " ") # must be running `bundle update`
|
|
||||||
bundler_version = nil
|
|
||||||
update_index = nil
|
|
||||||
ARGV.each_with_index do |a, i|
|
|
||||||
if update_index && update_index.succ == i && a =~ Gem::Version::ANCHORED_VERSION_PATTERN
|
|
||||||
bundler_version = a
|
|
||||||
end
|
|
||||||
next unless a =~ /\A--bundler(?:[= ](#{Gem::Version::VERSION_PATTERN}))?\z/
|
|
||||||
bundler_version = $1
|
|
||||||
update_index = i
|
|
||||||
end
|
|
||||||
bundler_version
|
|
||||||
end
|
|
||||||
|
|
||||||
def gemfile
|
|
||||||
gemfile = ENV["BUNDLE_GEMFILE"]
|
|
||||||
return gemfile if gemfile && !gemfile.empty?
|
|
||||||
|
|
||||||
File.expand_path("../../Gemfile", __FILE__)
|
|
||||||
end
|
|
||||||
|
|
||||||
def lockfile
|
|
||||||
lockfile =
|
|
||||||
case File.basename(gemfile)
|
|
||||||
when "gems.rb" then gemfile.sub(/\.rb$/, gemfile)
|
|
||||||
else "#{gemfile}.lock"
|
|
||||||
end
|
|
||||||
File.expand_path(lockfile)
|
|
||||||
end
|
|
||||||
|
|
||||||
def lockfile_version
|
|
||||||
return unless File.file?(lockfile)
|
|
||||||
lockfile_contents = File.read(lockfile)
|
|
||||||
return unless lockfile_contents =~ /\n\nBUNDLED WITH\n\s{2,}(#{Gem::Version::VERSION_PATTERN})\n/
|
|
||||||
Regexp.last_match(1)
|
|
||||||
end
|
|
||||||
|
|
||||||
def bundler_version
|
|
||||||
@bundler_version ||=
|
|
||||||
env_var_version || cli_arg_version ||
|
|
||||||
lockfile_version
|
|
||||||
end
|
|
||||||
|
|
||||||
def bundler_requirement
|
|
||||||
return "#{Gem::Requirement.default}.a" unless bundler_version
|
|
||||||
|
|
||||||
bundler_gem_version = Gem::Version.new(bundler_version)
|
|
||||||
|
|
||||||
requirement = bundler_gem_version.approximate_recommendation
|
|
||||||
|
|
||||||
return requirement unless Gem::Version.new(Gem::VERSION) < Gem::Version.new("2.7.0")
|
|
||||||
|
|
||||||
requirement += ".a" if bundler_gem_version.prerelease?
|
|
||||||
|
|
||||||
requirement
|
|
||||||
end
|
|
||||||
|
|
||||||
def load_bundler!
|
|
||||||
ENV["BUNDLE_GEMFILE"] ||= gemfile
|
|
||||||
|
|
||||||
activate_bundler
|
|
||||||
end
|
|
||||||
|
|
||||||
def activate_bundler
|
|
||||||
gem_error = activation_error_handling do
|
|
||||||
gem "bundler", bundler_requirement
|
|
||||||
end
|
|
||||||
return if gem_error.nil?
|
|
||||||
require_error = activation_error_handling do
|
|
||||||
require "bundler/version"
|
|
||||||
end
|
|
||||||
return if require_error.nil? && Gem::Requirement.new(bundler_requirement).satisfied_by?(Gem::Version.new(Bundler::VERSION))
|
|
||||||
warn "Activating bundler (#{bundler_requirement}) failed:\n#{gem_error.message}\n\nTo install the version of bundler this project requires, run `gem install bundler -v '#{bundler_requirement}'`"
|
|
||||||
exit 42
|
|
||||||
end
|
|
||||||
|
|
||||||
def activation_error_handling
|
|
||||||
yield
|
|
||||||
nil
|
|
||||||
rescue StandardError, LoadError => e
|
|
||||||
e
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
m.load_bundler!
|
|
||||||
|
|
||||||
if m.invoked_as_script?
|
|
||||||
load Gem.bin_path("bundler", "bundle")
|
|
||||||
end
|
|
|
@ -1,9 +0,0 @@
|
||||||
#!/usr/bin/env ruby
|
|
||||||
begin
|
|
||||||
load File.expand_path('../spring', __FILE__)
|
|
||||||
rescue LoadError => e
|
|
||||||
raise unless e.message.include?('spring')
|
|
||||||
end
|
|
||||||
APP_PATH = File.expand_path('../config/application', __dir__)
|
|
||||||
require_relative '../config/boot'
|
|
||||||
require 'rails/commands'
|
|
9
bin/rake
9
bin/rake
|
@ -1,9 +0,0 @@
|
||||||
#!/usr/bin/env ruby
|
|
||||||
begin
|
|
||||||
load File.expand_path('../spring', __FILE__)
|
|
||||||
rescue LoadError => e
|
|
||||||
raise unless e.message.include?('spring')
|
|
||||||
end
|
|
||||||
require_relative '../config/boot'
|
|
||||||
require 'rake'
|
|
||||||
Rake.application.run
|
|
36
bin/setup
36
bin/setup
|
@ -1,36 +0,0 @@
|
||||||
#!/usr/bin/env ruby
|
|
||||||
require 'fileutils'
|
|
||||||
|
|
||||||
# path to your application root.
|
|
||||||
APP_ROOT = File.expand_path('..', __dir__)
|
|
||||||
|
|
||||||
def system!(*args)
|
|
||||||
system(*args) || abort("\n== Command #{args} failed ==")
|
|
||||||
end
|
|
||||||
|
|
||||||
FileUtils.chdir APP_ROOT do
|
|
||||||
# This script is a way to setup or update your development environment automatically.
|
|
||||||
# This script is idempotent, so that you can run it at anytime and get an expectable outcome.
|
|
||||||
# Add necessary setup steps to this file.
|
|
||||||
|
|
||||||
puts '== Installing dependencies =='
|
|
||||||
system! 'gem install bundler --conservative'
|
|
||||||
system('bundle check') || system!('bundle install')
|
|
||||||
|
|
||||||
# Install JavaScript dependencies
|
|
||||||
# system('bin/yarn')
|
|
||||||
|
|
||||||
# puts "\n== Copying sample files =="
|
|
||||||
# unless File.exist?('config/database.yml')
|
|
||||||
# FileUtils.cp 'config/database.yml.sample', 'config/database.yml'
|
|
||||||
# end
|
|
||||||
|
|
||||||
puts "\n== Preparing database =="
|
|
||||||
system! 'bin/rails db:prepare'
|
|
||||||
|
|
||||||
puts "\n== Removing old logs and tempfiles =="
|
|
||||||
system! 'bin/rails log:clear tmp:clear'
|
|
||||||
|
|
||||||
puts "\n== Restarting application server =="
|
|
||||||
system! 'bin/rails restart'
|
|
||||||
end
|
|
17
bin/spring
17
bin/spring
|
@ -1,17 +0,0 @@
|
||||||
#!/usr/bin/env ruby
|
|
||||||
|
|
||||||
# This file loads Spring without using Bundler, in order to be fast.
|
|
||||||
# It gets overwritten when you run the `spring binstub` command.
|
|
||||||
|
|
||||||
unless defined?(Spring)
|
|
||||||
require 'rubygems'
|
|
||||||
require 'bundler'
|
|
||||||
|
|
||||||
lockfile = Bundler::LockfileParser.new(Bundler.default_lockfile.read)
|
|
||||||
spring = lockfile.specs.detect { |spec| spec.name == 'spring' }
|
|
||||||
if spring
|
|
||||||
Gem.use_paths Gem.dir, Bundler.bundle_path.to_s, *Gem.path
|
|
||||||
gem 'spring', spring.version
|
|
||||||
require 'spring/binstub'
|
|
||||||
end
|
|
||||||
end
|
|
18
bin/webpack
18
bin/webpack
|
@ -1,18 +0,0 @@
|
||||||
#!/usr/bin/env ruby
|
|
||||||
|
|
||||||
ENV["RAILS_ENV"] ||= ENV["RACK_ENV"] || "development"
|
|
||||||
ENV["NODE_ENV"] ||= "development"
|
|
||||||
|
|
||||||
require "pathname"
|
|
||||||
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
|
||||||
Pathname.new(__FILE__).realpath)
|
|
||||||
|
|
||||||
require "bundler/setup"
|
|
||||||
|
|
||||||
require "webpacker"
|
|
||||||
require "webpacker/webpack_runner"
|
|
||||||
|
|
||||||
APP_ROOT = File.expand_path("..", __dir__)
|
|
||||||
Dir.chdir(APP_ROOT) do
|
|
||||||
Webpacker::WebpackRunner.run(ARGV)
|
|
||||||
end
|
|
|
@ -1,18 +0,0 @@
|
||||||
#!/usr/bin/env ruby
|
|
||||||
|
|
||||||
ENV["RAILS_ENV"] ||= ENV["RACK_ENV"] || "development"
|
|
||||||
ENV["NODE_ENV"] ||= "development"
|
|
||||||
|
|
||||||
require "pathname"
|
|
||||||
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
|
||||||
Pathname.new(__FILE__).realpath)
|
|
||||||
|
|
||||||
require "bundler/setup"
|
|
||||||
|
|
||||||
require "webpacker"
|
|
||||||
require "webpacker/dev_server_runner"
|
|
||||||
|
|
||||||
APP_ROOT = File.expand_path("..", __dir__)
|
|
||||||
Dir.chdir(APP_ROOT) do
|
|
||||||
Webpacker::DevServerRunner.run(ARGV)
|
|
||||||
end
|
|
11
bin/yarn
11
bin/yarn
|
@ -1,11 +0,0 @@
|
||||||
#!/usr/bin/env ruby
|
|
||||||
APP_ROOT = File.expand_path('..', __dir__)
|
|
||||||
Dir.chdir(APP_ROOT) do
|
|
||||||
begin
|
|
||||||
exec "yarnpkg", *ARGV
|
|
||||||
rescue Errno::ENOENT
|
|
||||||
$stderr.puts "Yarn executable was not detected in the system."
|
|
||||||
$stderr.puts "Download Yarn at https://yarnpkg.com/en/docs/install"
|
|
||||||
exit 1
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -1,5 +0,0 @@
|
||||||
# This file is used by Rack-based servers to start the application.
|
|
||||||
|
|
||||||
require_relative 'config/environment'
|
|
||||||
|
|
||||||
run Rails.application
|
|
17
config/admin.ts
Normal file
17
config/admin.ts
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
export default ({ env }) => ({
|
||||||
|
auth: {
|
||||||
|
secret: env('ADMIN_JWT_SECRET'),
|
||||||
|
},
|
||||||
|
apiToken: {
|
||||||
|
salt: env('API_TOKEN_SALT'),
|
||||||
|
},
|
||||||
|
transfer: {
|
||||||
|
token: {
|
||||||
|
salt: env('TRANSFER_TOKEN_SALT'),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
flags: {
|
||||||
|
nps: env.bool('FLAG_NPS', true),
|
||||||
|
promoteEE: env.bool('FLAG_PROMOTE_EE', true),
|
||||||
|
},
|
||||||
|
});
|
7
config/api.ts
Normal file
7
config/api.ts
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
export default {
|
||||||
|
rest: {
|
||||||
|
defaultLimit: 25,
|
||||||
|
maxLimit: 100,
|
||||||
|
withCount: true,
|
||||||
|
},
|
||||||
|
};
|
|
@ -1,19 +0,0 @@
|
||||||
require_relative 'boot'
|
|
||||||
|
|
||||||
require 'rails/all'
|
|
||||||
|
|
||||||
# Require the gems listed in Gemfile, including any gems
|
|
||||||
# you've limited to :test, :development, or :production.
|
|
||||||
Bundler.require(*Rails.groups)
|
|
||||||
|
|
||||||
module ContactUs
|
|
||||||
class Application < Rails::Application
|
|
||||||
# Initialize configuration defaults for originally generated Rails version.
|
|
||||||
config.load_defaults 6.0
|
|
||||||
|
|
||||||
# Settings in config/environments/* take precedence over those specified here.
|
|
||||||
# Application configuration can go into files in config/initializers
|
|
||||||
# -- all .rb files in that directory are automatically loaded after loading
|
|
||||||
# the framework and any gems in your application.
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -1,4 +0,0 @@
|
||||||
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
|
|
||||||
|
|
||||||
require 'bundler/setup' # Set up gems listed in the Gemfile.
|
|
||||||
require 'bootsnap/setup' # Speed up boot time by caching expensive operations.
|
|
|
@ -1,10 +0,0 @@
|
||||||
development:
|
|
||||||
adapter: async
|
|
||||||
|
|
||||||
test:
|
|
||||||
adapter: test
|
|
||||||
|
|
||||||
production:
|
|
||||||
adapter: redis
|
|
||||||
url: <%= ENV.fetch("REDIS_URL") { "redis://localhost:6379/1" } %>
|
|
||||||
channel_prefix: contactUs_production
|
|
93
config/database.ts
Normal file
93
config/database.ts
Normal file
|
@ -0,0 +1,93 @@
|
||||||
|
import path from 'path';
|
||||||
|
|
||||||
|
export default ({ env }) => {
|
||||||
|
const client = env('DATABASE_CLIENT', 'sqlite');
|
||||||
|
|
||||||
|
const connections = {
|
||||||
|
mysql: {
|
||||||
|
connection: {
|
||||||
|
connectionString: env('DATABASE_URL'),
|
||||||
|
host: env('DATABASE_HOST', 'localhost'),
|
||||||
|
port: env.int('DATABASE_PORT', 3306),
|
||||||
|
database: env('DATABASE_NAME', 'strapi'),
|
||||||
|
user: env('DATABASE_USERNAME', 'strapi'),
|
||||||
|
password: env('DATABASE_PASSWORD', 'strapi'),
|
||||||
|
ssl: env.bool('DATABASE_SSL', false) && {
|
||||||
|
key: env('DATABASE_SSL_KEY', undefined),
|
||||||
|
cert: env('DATABASE_SSL_CERT', undefined),
|
||||||
|
ca: env('DATABASE_SSL_CA', undefined),
|
||||||
|
capath: env('DATABASE_SSL_CAPATH', undefined),
|
||||||
|
cipher: env('DATABASE_SSL_CIPHER', undefined),
|
||||||
|
rejectUnauthorized: env.bool(
|
||||||
|
'DATABASE_SSL_REJECT_UNAUTHORIZED',
|
||||||
|
true
|
||||||
|
),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
pool: { min: env.int('DATABASE_POOL_MIN', 2), max: env.int('DATABASE_POOL_MAX', 10) },
|
||||||
|
},
|
||||||
|
mysql2: {
|
||||||
|
connection: {
|
||||||
|
host: env('DATABASE_HOST', 'localhost'),
|
||||||
|
port: env.int('DATABASE_PORT', 3306),
|
||||||
|
database: env('DATABASE_NAME', 'strapi'),
|
||||||
|
user: env('DATABASE_USERNAME', 'strapi'),
|
||||||
|
password: env('DATABASE_PASSWORD', 'strapi'),
|
||||||
|
ssl: env.bool('DATABASE_SSL', false) && {
|
||||||
|
key: env('DATABASE_SSL_KEY', undefined),
|
||||||
|
cert: env('DATABASE_SSL_CERT', undefined),
|
||||||
|
ca: env('DATABASE_SSL_CA', undefined),
|
||||||
|
capath: env('DATABASE_SSL_CAPATH', undefined),
|
||||||
|
cipher: env('DATABASE_SSL_CIPHER', undefined),
|
||||||
|
rejectUnauthorized: env.bool(
|
||||||
|
'DATABASE_SSL_REJECT_UNAUTHORIZED',
|
||||||
|
true
|
||||||
|
),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
pool: { min: env.int('DATABASE_POOL_MIN', 2), max: env.int('DATABASE_POOL_MAX', 10) },
|
||||||
|
},
|
||||||
|
postgres: {
|
||||||
|
connection: {
|
||||||
|
connectionString: env('DATABASE_URL'),
|
||||||
|
host: env('DATABASE_HOST', 'localhost'),
|
||||||
|
port: env.int('DATABASE_PORT', 5432),
|
||||||
|
database: env('DATABASE_NAME', 'strapi'),
|
||||||
|
user: env('DATABASE_USERNAME', 'strapi'),
|
||||||
|
password: env('DATABASE_PASSWORD', 'strapi'),
|
||||||
|
ssl: env.bool('DATABASE_SSL', false) && {
|
||||||
|
key: env('DATABASE_SSL_KEY', undefined),
|
||||||
|
cert: env('DATABASE_SSL_CERT', undefined),
|
||||||
|
ca: env('DATABASE_SSL_CA', undefined),
|
||||||
|
capath: env('DATABASE_SSL_CAPATH', undefined),
|
||||||
|
cipher: env('DATABASE_SSL_CIPHER', undefined),
|
||||||
|
rejectUnauthorized: env.bool(
|
||||||
|
'DATABASE_SSL_REJECT_UNAUTHORIZED',
|
||||||
|
true
|
||||||
|
),
|
||||||
|
},
|
||||||
|
schema: env('DATABASE_SCHEMA', 'public'),
|
||||||
|
},
|
||||||
|
pool: { min: env.int('DATABASE_POOL_MIN', 2), max: env.int('DATABASE_POOL_MAX', 10) },
|
||||||
|
},
|
||||||
|
sqlite: {
|
||||||
|
connection: {
|
||||||
|
filename: path.join(
|
||||||
|
__dirname,
|
||||||
|
'..',
|
||||||
|
'..',
|
||||||
|
env('DATABASE_FILENAME', '.tmp/data.db')
|
||||||
|
),
|
||||||
|
},
|
||||||
|
useNullAsDefault: true,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
return {
|
||||||
|
connection: {
|
||||||
|
client,
|
||||||
|
...connections[client],
|
||||||
|
acquireConnectionTimeout: env.int('DATABASE_CONNECTION_TIMEOUT', 60000),
|
||||||
|
},
|
||||||
|
};
|
||||||
|
};
|
|
@ -1,25 +0,0 @@
|
||||||
# SQLite. Versions 3.8.0 and up are supported.
|
|
||||||
# gem install sqlite3
|
|
||||||
#
|
|
||||||
# Ensure the SQLite 3 gem is defined in your Gemfile
|
|
||||||
# gem 'sqlite3'
|
|
||||||
#
|
|
||||||
default: &default
|
|
||||||
adapter: sqlite3
|
|
||||||
pool: 5
|
|
||||||
timeout: 5000
|
|
||||||
|
|
||||||
development:
|
|
||||||
<<: *default
|
|
||||||
database: db/development.sqlite3
|
|
||||||
|
|
||||||
# Warning: The database defined as "test" will be erased and
|
|
||||||
# re-generated from your development database when you run "rake".
|
|
||||||
# Do not set this db to the same as development or production.
|
|
||||||
test:
|
|
||||||
<<: *default
|
|
||||||
database: db/test.sqlite3
|
|
||||||
|
|
||||||
production:
|
|
||||||
<<: *default
|
|
||||||
database: db/production.sqlite3
|
|
|
@ -1,5 +0,0 @@
|
||||||
# Load the Rails application.
|
|
||||||
require_relative 'application'
|
|
||||||
|
|
||||||
# Initialize the Rails application.
|
|
||||||
Rails.application.initialize!
|
|
|
@ -1,62 +0,0 @@
|
||||||
Rails.application.configure do
|
|
||||||
# Settings specified here will take precedence over those in config/application.rb.
|
|
||||||
|
|
||||||
# In the development environment your application's code is reloaded on
|
|
||||||
# every request. This slows down response time but is perfect for development
|
|
||||||
# since you don't have to restart the web server when you make code changes.
|
|
||||||
config.cache_classes = false
|
|
||||||
|
|
||||||
# Do not eager load code on boot.
|
|
||||||
config.eager_load = false
|
|
||||||
|
|
||||||
# Show full error reports.
|
|
||||||
config.consider_all_requests_local = true
|
|
||||||
|
|
||||||
# Enable/disable caching. By default caching is disabled.
|
|
||||||
# Run rails dev:cache to toggle caching.
|
|
||||||
if Rails.root.join('tmp', 'caching-dev.txt').exist?
|
|
||||||
config.action_controller.perform_caching = true
|
|
||||||
config.action_controller.enable_fragment_cache_logging = true
|
|
||||||
|
|
||||||
config.cache_store = :memory_store
|
|
||||||
config.public_file_server.headers = {
|
|
||||||
'Cache-Control' => "public, max-age=#{2.days.to_i}"
|
|
||||||
}
|
|
||||||
else
|
|
||||||
config.action_controller.perform_caching = false
|
|
||||||
|
|
||||||
config.cache_store = :null_store
|
|
||||||
end
|
|
||||||
|
|
||||||
# Store uploaded files on the local file system (see config/storage.yml for options).
|
|
||||||
config.active_storage.service = :local
|
|
||||||
|
|
||||||
# Don't care if the mailer can't send.
|
|
||||||
config.action_mailer.raise_delivery_errors = false
|
|
||||||
|
|
||||||
config.action_mailer.perform_caching = false
|
|
||||||
|
|
||||||
# Print deprecation notices to the Rails logger.
|
|
||||||
config.active_support.deprecation = :log
|
|
||||||
|
|
||||||
# Raise an error on page load if there are pending migrations.
|
|
||||||
config.active_record.migration_error = :page_load
|
|
||||||
|
|
||||||
# Highlight code that triggered database queries in logs.
|
|
||||||
config.active_record.verbose_query_logs = true
|
|
||||||
|
|
||||||
# Debug mode disables concatenation and preprocessing of assets.
|
|
||||||
# This option may cause significant delays in view rendering with a large
|
|
||||||
# number of complex assets.
|
|
||||||
config.assets.debug = true
|
|
||||||
|
|
||||||
# Suppress logger output for asset requests.
|
|
||||||
config.assets.quiet = true
|
|
||||||
|
|
||||||
# Raises error for missing translations.
|
|
||||||
# config.action_view.raise_on_missing_translations = true
|
|
||||||
|
|
||||||
# Use an evented file watcher to asynchronously detect changes in source code,
|
|
||||||
# routes, locales, etc. This feature depends on the listen gem.
|
|
||||||
config.file_watcher = ActiveSupport::EventedFileUpdateChecker
|
|
||||||
end
|
|
|
@ -1,114 +0,0 @@
|
||||||
Rails.application.configure do
|
|
||||||
# Settings specified here will take precedence over those in config/application.rb.
|
|
||||||
|
|
||||||
# Code is not reloaded between requests.
|
|
||||||
config.cache_classes = true
|
|
||||||
|
|
||||||
# Eager load code on boot. This eager loads most of Rails and
|
|
||||||
# your application in memory, allowing both threaded web servers
|
|
||||||
# and those relying on copy on write to perform better.
|
|
||||||
# Rake tasks automatically ignore this option for performance.
|
|
||||||
config.eager_load = true
|
|
||||||
|
|
||||||
# Full error reports are disabled and caching is turned on.
|
|
||||||
config.consider_all_requests_local = false
|
|
||||||
config.action_controller.perform_caching = true
|
|
||||||
|
|
||||||
# Ensures that a master key has been made available in either ENV["RAILS_MASTER_KEY"]
|
|
||||||
# or in config/master.key. This key is used to decrypt credentials (and other encrypted files).
|
|
||||||
config.require_master_key = true
|
|
||||||
|
|
||||||
# Disable serving static files from the `/public` folder by default since
|
|
||||||
# Apache or NGINX already handles this.
|
|
||||||
config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present?
|
|
||||||
|
|
||||||
# Compress CSS using a preprocessor.
|
|
||||||
# config.assets.css_compressor = :sass
|
|
||||||
|
|
||||||
# Do not fallback to assets pipeline if a precompiled asset is missed.
|
|
||||||
config.assets.compile = true
|
|
||||||
config.assets.precompile += %w( active_admin.css active_admin/print.css active_admin.js )
|
|
||||||
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
|
|
||||||
# config.action_controller.asset_host = 'http://assets.example.com'
|
|
||||||
|
|
||||||
# Specifies the header that your server uses for sending files.
|
|
||||||
# config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
|
|
||||||
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
|
|
||||||
|
|
||||||
# Store uploaded files on the local file system (see config/storage.yml for options).
|
|
||||||
config.active_storage.service = :local
|
|
||||||
|
|
||||||
# Mount Action Cable outside main process or domain.
|
|
||||||
# config.action_cable.mount_path = nil
|
|
||||||
# config.action_cable.url = 'wss://example.com/cable'
|
|
||||||
# config.action_cable.allowed_request_origins = [ 'http://example.com', /http:\/\/example.*/ ]
|
|
||||||
|
|
||||||
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
|
||||||
# config.force_ssl = true
|
|
||||||
|
|
||||||
# Use the lowest log level to ensure availability of diagnostic information
|
|
||||||
# when problems arise.
|
|
||||||
config.log_level = :debug
|
|
||||||
|
|
||||||
# Prepend all log lines with the following tags.
|
|
||||||
config.log_tags = [ :request_id ]
|
|
||||||
|
|
||||||
# Use a different cache store in production.
|
|
||||||
# config.cache_store = :mem_cache_store
|
|
||||||
|
|
||||||
# Use a real queuing backend for Active Job (and separate queues per environment).
|
|
||||||
# config.active_job.queue_adapter = :resque
|
|
||||||
# config.active_job.queue_name_prefix = "contactUs_production"
|
|
||||||
|
|
||||||
config.action_mailer.perform_caching = false
|
|
||||||
|
|
||||||
# Ignore bad email addresses and do not raise email delivery errors.
|
|
||||||
# Set this to true and configure the email server for immediate delivery to raise delivery errors.
|
|
||||||
# config.action_mailer.raise_delivery_errors = false
|
|
||||||
|
|
||||||
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
|
||||||
# the I18n.default_locale when a translation cannot be found).
|
|
||||||
config.i18n.fallbacks = true
|
|
||||||
|
|
||||||
# Send deprecation notices to registered listeners.
|
|
||||||
config.active_support.deprecation = :notify
|
|
||||||
|
|
||||||
# Use default logging formatter so that PID and timestamp are not suppressed.
|
|
||||||
config.log_formatter = ::Logger::Formatter.new
|
|
||||||
|
|
||||||
# Use a different logger for distributed setups.
|
|
||||||
# require 'syslog/logger'
|
|
||||||
# config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name')
|
|
||||||
|
|
||||||
if ENV["RAILS_LOG_TO_STDOUT"].present?
|
|
||||||
logger = ActiveSupport::Logger.new(STDOUT)
|
|
||||||
logger.formatter = config.log_formatter
|
|
||||||
config.logger = ActiveSupport::TaggedLogging.new(logger)
|
|
||||||
end
|
|
||||||
|
|
||||||
# Do not dump schema after migrations.
|
|
||||||
config.active_record.dump_schema_after_migration = false
|
|
||||||
|
|
||||||
# Inserts middleware to perform automatic connection switching.
|
|
||||||
# The `database_selector` hash is used to pass options to the DatabaseSelector
|
|
||||||
# middleware. The `delay` is used to determine how long to wait after a write
|
|
||||||
# to send a subsequent read to the primary.
|
|
||||||
#
|
|
||||||
# The `database_resolver` class is used by the middleware to determine which
|
|
||||||
# database is appropriate to use based on the time delay.
|
|
||||||
#
|
|
||||||
# The `database_resolver_context` class is used by the middleware to set
|
|
||||||
# timestamps for the last write to the primary. The resolver uses the context
|
|
||||||
# class timestamps to determine how long to wait before reading from the
|
|
||||||
# replica.
|
|
||||||
#
|
|
||||||
# By default Rails will store a last write timestamp in the session. The
|
|
||||||
# DatabaseSelector middleware is designed as such you can define your own
|
|
||||||
# strategy for connection switching and pass that into the middleware through
|
|
||||||
# these configuration options.
|
|
||||||
# config.active_record.database_selector = { delay: 2.seconds }
|
|
||||||
# config.active_record.database_resolver = ActiveRecord::Middleware::DatabaseSelector::Resolver
|
|
||||||
# config.active_record.database_resolver_context = ActiveRecord::Middleware::DatabaseSelector::Resolver::Session
|
|
||||||
#
|
|
||||||
config.secret_key_base = ENV['SECRET_KEY_BASE']
|
|
||||||
end
|
|
|
@ -1,49 +0,0 @@
|
||||||
# The test environment is used exclusively to run your application's
|
|
||||||
# test suite. You never need to work with it otherwise. Remember that
|
|
||||||
# your test database is "scratch space" for the test suite and is wiped
|
|
||||||
# and recreated between test runs. Don't rely on the data there!
|
|
||||||
|
|
||||||
Rails.application.configure do
|
|
||||||
# Settings specified here will take precedence over those in config/application.rb.
|
|
||||||
|
|
||||||
config.cache_classes = false
|
|
||||||
config.action_view.cache_template_loading = true
|
|
||||||
|
|
||||||
# Do not eager load code on boot. This avoids loading your whole application
|
|
||||||
# just for the purpose of running a single test. If you are using a tool that
|
|
||||||
# preloads Rails for running tests, you may have to set it to true.
|
|
||||||
config.eager_load = false
|
|
||||||
|
|
||||||
# Configure public file server for tests with Cache-Control for performance.
|
|
||||||
config.public_file_server.enabled = true
|
|
||||||
config.public_file_server.headers = {
|
|
||||||
'Cache-Control' => "public, max-age=#{1.hour.to_i}"
|
|
||||||
}
|
|
||||||
|
|
||||||
# Show full error reports and disable caching.
|
|
||||||
config.consider_all_requests_local = true
|
|
||||||
config.action_controller.perform_caching = false
|
|
||||||
config.cache_store = :null_store
|
|
||||||
|
|
||||||
# Raise exceptions instead of rendering exception templates.
|
|
||||||
config.action_dispatch.show_exceptions = false
|
|
||||||
|
|
||||||
# Disable request forgery protection in test environment.
|
|
||||||
config.action_controller.allow_forgery_protection = false
|
|
||||||
|
|
||||||
# Store uploaded files on the local file system in a temporary directory.
|
|
||||||
config.active_storage.service = :test
|
|
||||||
|
|
||||||
config.action_mailer.perform_caching = false
|
|
||||||
|
|
||||||
# Tell Action Mailer not to deliver emails to the real world.
|
|
||||||
# The :test delivery method accumulates sent emails in the
|
|
||||||
# ActionMailer::Base.deliveries array.
|
|
||||||
config.action_mailer.delivery_method = :test
|
|
||||||
|
|
||||||
# Print deprecation notices to the stderr.
|
|
||||||
config.active_support.deprecation = :stderr
|
|
||||||
|
|
||||||
# Raises error for missing translations.
|
|
||||||
# config.action_view.raise_on_missing_translations = true
|
|
||||||
end
|
|
|
@ -1,335 +0,0 @@
|
||||||
ActiveAdmin.setup do |config|
|
|
||||||
# == Site Title
|
|
||||||
#
|
|
||||||
# Set the title that is displayed on the main layout
|
|
||||||
# for each of the active admin pages.
|
|
||||||
#
|
|
||||||
config.site_title = "Contact Us"
|
|
||||||
|
|
||||||
# Set the link url for the title. For example, to take
|
|
||||||
# users to your main site. Defaults to no link.
|
|
||||||
#
|
|
||||||
# config.site_title_link = "/"
|
|
||||||
|
|
||||||
# Set an optional image to be displayed for the header
|
|
||||||
# instead of a string (overrides :site_title)
|
|
||||||
#
|
|
||||||
# Note: Aim for an image that's 21px high so it fits in the header.
|
|
||||||
#
|
|
||||||
# config.site_title_image = "logo.png"
|
|
||||||
|
|
||||||
# == Default Namespace
|
|
||||||
#
|
|
||||||
# Set the default namespace each administration resource
|
|
||||||
# will be added to.
|
|
||||||
#
|
|
||||||
# eg:
|
|
||||||
# config.default_namespace = :hello_world
|
|
||||||
#
|
|
||||||
# This will create resources in the HelloWorld module and
|
|
||||||
# will namespace routes to /hello_world/*
|
|
||||||
#
|
|
||||||
# To set no namespace by default, use:
|
|
||||||
# config.default_namespace = false
|
|
||||||
#
|
|
||||||
# Default:
|
|
||||||
# config.default_namespace = :admin
|
|
||||||
#
|
|
||||||
# You can customize the settings for each namespace by using
|
|
||||||
# a namespace block. For example, to change the site title
|
|
||||||
# within a namespace:
|
|
||||||
#
|
|
||||||
# config.namespace :admin do |admin|
|
|
||||||
# admin.site_title = "Custom Admin Title"
|
|
||||||
# end
|
|
||||||
#
|
|
||||||
# This will ONLY change the title for the admin section. Other
|
|
||||||
# namespaces will continue to use the main "site_title" configuration.
|
|
||||||
|
|
||||||
# == User Authentication
|
|
||||||
#
|
|
||||||
# Active Admin will automatically call an authentication
|
|
||||||
# method in a before filter of all controller actions to
|
|
||||||
# ensure that there is a currently logged in admin user.
|
|
||||||
#
|
|
||||||
# This setting changes the method which Active Admin calls
|
|
||||||
# within the application controller.
|
|
||||||
config.authentication_method = :authenticate_admin_user!
|
|
||||||
|
|
||||||
# == User Authorization
|
|
||||||
#
|
|
||||||
# Active Admin will automatically call an authorization
|
|
||||||
# method in a before filter of all controller actions to
|
|
||||||
# ensure that there is a user with proper rights. You can use
|
|
||||||
# CanCanAdapter or make your own. Please refer to documentation.
|
|
||||||
# config.authorization_adapter = ActiveAdmin::CanCanAdapter
|
|
||||||
|
|
||||||
# In case you prefer Pundit over other solutions you can here pass
|
|
||||||
# the name of default policy class. This policy will be used in every
|
|
||||||
# case when Pundit is unable to find suitable policy.
|
|
||||||
# config.pundit_default_policy = "MyDefaultPunditPolicy"
|
|
||||||
|
|
||||||
# If you wish to maintain a separate set of Pundit policies for admin
|
|
||||||
# resources, you may set a namespace here that Pundit will search
|
|
||||||
# within when looking for a resource's policy.
|
|
||||||
# config.pundit_policy_namespace = :admin
|
|
||||||
|
|
||||||
# You can customize your CanCan Ability class name here.
|
|
||||||
# config.cancan_ability_class = "Ability"
|
|
||||||
|
|
||||||
# You can specify a method to be called on unauthorized access.
|
|
||||||
# This is necessary in order to prevent a redirect loop which happens
|
|
||||||
# because, by default, user gets redirected to Dashboard. If user
|
|
||||||
# doesn't have access to Dashboard, he'll end up in a redirect loop.
|
|
||||||
# Method provided here should be defined in application_controller.rb.
|
|
||||||
# config.on_unauthorized_access = :access_denied
|
|
||||||
|
|
||||||
# == Current User
|
|
||||||
#
|
|
||||||
# Active Admin will associate actions with the current
|
|
||||||
# user performing them.
|
|
||||||
#
|
|
||||||
# This setting changes the method which Active Admin calls
|
|
||||||
# (within the application controller) to return the currently logged in user.
|
|
||||||
config.current_user_method = :current_admin_user
|
|
||||||
|
|
||||||
# == Logging Out
|
|
||||||
#
|
|
||||||
# Active Admin displays a logout link on each screen. These
|
|
||||||
# settings configure the location and method used for the link.
|
|
||||||
#
|
|
||||||
# This setting changes the path where the link points to. If it's
|
|
||||||
# a string, the strings is used as the path. If it's a Symbol, we
|
|
||||||
# will call the method to return the path.
|
|
||||||
#
|
|
||||||
# Default:
|
|
||||||
config.logout_link_path = :destroy_admin_user_session_path
|
|
||||||
|
|
||||||
# This setting changes the http method used when rendering the
|
|
||||||
# link. For example :get, :delete, :put, etc..
|
|
||||||
#
|
|
||||||
# Default:
|
|
||||||
# config.logout_link_method = :get
|
|
||||||
|
|
||||||
# == Root
|
|
||||||
#
|
|
||||||
# Set the action to call for the root path. You can set different
|
|
||||||
# roots for each namespace.
|
|
||||||
#
|
|
||||||
# Default:
|
|
||||||
# config.root_to = 'dashboard#index'
|
|
||||||
|
|
||||||
# == Admin Comments
|
|
||||||
#
|
|
||||||
# This allows your users to comment on any resource registered with Active Admin.
|
|
||||||
#
|
|
||||||
# You can completely disable comments:
|
|
||||||
# config.comments = false
|
|
||||||
#
|
|
||||||
# You can change the name under which comments are registered:
|
|
||||||
# config.comments_registration_name = 'AdminComment'
|
|
||||||
#
|
|
||||||
# You can change the order for the comments and you can change the column
|
|
||||||
# to be used for ordering:
|
|
||||||
# config.comments_order = 'created_at ASC'
|
|
||||||
#
|
|
||||||
# You can disable the menu item for the comments index page:
|
|
||||||
# config.comments_menu = false
|
|
||||||
#
|
|
||||||
# You can customize the comment menu:
|
|
||||||
# config.comments_menu = { parent: 'Admin', priority: 1 }
|
|
||||||
|
|
||||||
# == Batch Actions
|
|
||||||
#
|
|
||||||
# Enable and disable Batch Actions
|
|
||||||
#
|
|
||||||
config.batch_actions = true
|
|
||||||
|
|
||||||
# == Controller Filters
|
|
||||||
#
|
|
||||||
# You can add before, after and around filters to all of your
|
|
||||||
# Active Admin resources and pages from here.
|
|
||||||
#
|
|
||||||
# config.before_action :do_something_awesome
|
|
||||||
|
|
||||||
# == Attribute Filters
|
|
||||||
#
|
|
||||||
# You can exclude possibly sensitive model attributes from being displayed,
|
|
||||||
# added to forms, or exported by default by ActiveAdmin
|
|
||||||
#
|
|
||||||
config.filter_attributes = [:encrypted_password, :password, :password_confirmation]
|
|
||||||
|
|
||||||
# == Localize Date/Time Format
|
|
||||||
#
|
|
||||||
# Set the localize format to display dates and times.
|
|
||||||
# To understand how to localize your app with I18n, read more at
|
|
||||||
# https://guides.rubyonrails.org/i18n.html
|
|
||||||
#
|
|
||||||
# You can run `bin/rails runner 'puts I18n.t("date.formats")'` to see the
|
|
||||||
# available formats in your application.
|
|
||||||
#
|
|
||||||
config.localize_format = :long
|
|
||||||
|
|
||||||
# == Setting a Favicon
|
|
||||||
#
|
|
||||||
# config.favicon = 'favicon.ico'
|
|
||||||
|
|
||||||
# == Meta Tags
|
|
||||||
#
|
|
||||||
# Add additional meta tags to the head element of active admin pages.
|
|
||||||
#
|
|
||||||
# Add tags to all pages logged in users see:
|
|
||||||
# config.meta_tags = { author: 'My Company' }
|
|
||||||
|
|
||||||
# By default, sign up/sign in/recover password pages are excluded
|
|
||||||
# from showing up in search engine results by adding a robots meta
|
|
||||||
# tag. You can reset the hash of meta tags included in logged out
|
|
||||||
# pages:
|
|
||||||
# config.meta_tags_for_logged_out_pages = {}
|
|
||||||
|
|
||||||
# == Removing Breadcrumbs
|
|
||||||
#
|
|
||||||
# Breadcrumbs are enabled by default. You can customize them for individual
|
|
||||||
# resources or you can disable them globally from here.
|
|
||||||
#
|
|
||||||
# config.breadcrumb = false
|
|
||||||
|
|
||||||
# == Create Another Checkbox
|
|
||||||
#
|
|
||||||
# Create another checkbox is disabled by default. You can customize it for individual
|
|
||||||
# resources or you can enable them globally from here.
|
|
||||||
#
|
|
||||||
# config.create_another = true
|
|
||||||
|
|
||||||
# == Register Stylesheets & Javascripts
|
|
||||||
#
|
|
||||||
# We recommend using the built in Active Admin layout and loading
|
|
||||||
# up your own stylesheets / javascripts to customize the look
|
|
||||||
# and feel.
|
|
||||||
#
|
|
||||||
# To load a stylesheet:
|
|
||||||
# config.register_stylesheet 'my_stylesheet.css'
|
|
||||||
#
|
|
||||||
# You can provide an options hash for more control, which is passed along to stylesheet_link_tag():
|
|
||||||
# config.register_stylesheet 'my_print_stylesheet.css', media: :print
|
|
||||||
#
|
|
||||||
# To load a javascript file:
|
|
||||||
# config.register_javascript 'my_javascript.js'
|
|
||||||
|
|
||||||
# == CSV options
|
|
||||||
#
|
|
||||||
# Set the CSV builder separator
|
|
||||||
# config.csv_options = { col_sep: ';' }
|
|
||||||
#
|
|
||||||
# Force the use of quotes
|
|
||||||
# config.csv_options = { force_quotes: true }
|
|
||||||
|
|
||||||
# == Menu System
|
|
||||||
#
|
|
||||||
# You can add a navigation menu to be used in your application, or configure a provided menu
|
|
||||||
#
|
|
||||||
# To change the default utility navigation to show a link to your website & a logout btn
|
|
||||||
#
|
|
||||||
# config.namespace :admin do |admin|
|
|
||||||
# admin.build_menu :utility_navigation do |menu|
|
|
||||||
# menu.add label: "My Great Website", url: "http://www.mygreatwebsite.com", html_options: { target: :blank }
|
|
||||||
# admin.add_logout_button_to_menu menu
|
|
||||||
# end
|
|
||||||
# end
|
|
||||||
#
|
|
||||||
# If you wanted to add a static menu item to the default menu provided:
|
|
||||||
#
|
|
||||||
# config.namespace :admin do |admin|
|
|
||||||
# admin.build_menu :default do |menu|
|
|
||||||
# menu.add label: "My Great Website", url: "http://www.mygreatwebsite.com", html_options: { target: :blank }
|
|
||||||
# end
|
|
||||||
# end
|
|
||||||
|
|
||||||
# == Download Links
|
|
||||||
#
|
|
||||||
# You can disable download links on resource listing pages,
|
|
||||||
# or customize the formats shown per namespace/globally
|
|
||||||
#
|
|
||||||
# To disable/customize for the :admin namespace:
|
|
||||||
#
|
|
||||||
# config.namespace :admin do |admin|
|
|
||||||
#
|
|
||||||
# # Disable the links entirely
|
|
||||||
# admin.download_links = false
|
|
||||||
#
|
|
||||||
# # Only show XML & PDF options
|
|
||||||
# admin.download_links = [:xml, :pdf]
|
|
||||||
#
|
|
||||||
# # Enable/disable the links based on block
|
|
||||||
# # (for example, with cancan)
|
|
||||||
# admin.download_links = proc { can?(:view_download_links) }
|
|
||||||
#
|
|
||||||
# end
|
|
||||||
|
|
||||||
# == Pagination
|
|
||||||
#
|
|
||||||
# Pagination is enabled by default for all resources.
|
|
||||||
# You can control the default per page count for all resources here.
|
|
||||||
#
|
|
||||||
# config.default_per_page = 30
|
|
||||||
#
|
|
||||||
# You can control the max per page count too.
|
|
||||||
#
|
|
||||||
# config.max_per_page = 10_000
|
|
||||||
|
|
||||||
# == Filters
|
|
||||||
#
|
|
||||||
# By default the index screen includes a "Filters" sidebar on the right
|
|
||||||
# hand side with a filter for each attribute of the registered model.
|
|
||||||
# You can enable or disable them for all resources here.
|
|
||||||
#
|
|
||||||
# config.filters = true
|
|
||||||
#
|
|
||||||
# By default the filters include associations in a select, which means
|
|
||||||
# that every record will be loaded for each association (up
|
|
||||||
# to the value of config.maximum_association_filter_arity).
|
|
||||||
# You can enabled or disable the inclusion
|
|
||||||
# of those filters by default here.
|
|
||||||
#
|
|
||||||
# config.include_default_association_filters = true
|
|
||||||
|
|
||||||
# config.maximum_association_filter_arity = 256 # default value of :unlimited will change to 256 in a future version
|
|
||||||
# config.filter_columns_for_large_association = [
|
|
||||||
# :display_name,
|
|
||||||
# :full_name,
|
|
||||||
# :name,
|
|
||||||
# :username,
|
|
||||||
# :login,
|
|
||||||
# :title,
|
|
||||||
# :email,
|
|
||||||
# ]
|
|
||||||
# config.filter_method_for_large_association = '_starts_with'
|
|
||||||
|
|
||||||
# == Head
|
|
||||||
#
|
|
||||||
# You can add your own content to the site head like analytics. Make sure
|
|
||||||
# you only pass content you trust.
|
|
||||||
#
|
|
||||||
# config.head = ''.html_safe
|
|
||||||
|
|
||||||
# == Footer
|
|
||||||
#
|
|
||||||
# By default, the footer shows the current Active Admin version. You can
|
|
||||||
# override the content of the footer here.
|
|
||||||
#
|
|
||||||
# config.footer = 'my custom footer text'
|
|
||||||
|
|
||||||
# == Sorting
|
|
||||||
#
|
|
||||||
# By default ActiveAdmin::OrderClause is used for sorting logic
|
|
||||||
# You can inherit it with own class and inject it for all resources
|
|
||||||
#
|
|
||||||
# config.order_clause = MyOrderClause
|
|
||||||
|
|
||||||
# == Webpacker
|
|
||||||
#
|
|
||||||
# By default, Active Admin uses Sprocket's asset pipeline.
|
|
||||||
# You can switch to using Webpacker here.
|
|
||||||
#
|
|
||||||
config.use_webpacker = true
|
|
||||||
end
|
|
|
@ -1,8 +0,0 @@
|
||||||
# Be sure to restart your server when you modify this file.
|
|
||||||
|
|
||||||
# ActiveSupport::Reloader.to_prepare do
|
|
||||||
# ApplicationController.renderer.defaults.merge!(
|
|
||||||
# http_host: 'example.org',
|
|
||||||
# https: false
|
|
||||||
# )
|
|
||||||
# end
|
|
|
@ -1,14 +0,0 @@
|
||||||
# Be sure to restart your server when you modify this file.
|
|
||||||
|
|
||||||
# Version of your assets, change this if you want to expire all your assets.
|
|
||||||
Rails.application.config.assets.version = '1.0'
|
|
||||||
|
|
||||||
# Add additional assets to the asset load path.
|
|
||||||
# Rails.application.config.assets.paths << Emoji.images_path
|
|
||||||
# Add Yarn node_modules folder to the asset load path.
|
|
||||||
Rails.application.config.assets.paths << Rails.root.join('node_modules')
|
|
||||||
|
|
||||||
# Precompile additional assets.
|
|
||||||
# application.js, application.css, and all non-JS/CSS in the app/assets
|
|
||||||
# folder are already added.
|
|
||||||
# Rails.application.config.assets.precompile += %w( admin.js admin.css )
|
|
|
@ -1,7 +0,0 @@
|
||||||
# Be sure to restart your server when you modify this file.
|
|
||||||
|
|
||||||
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
|
|
||||||
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
|
|
||||||
|
|
||||||
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
|
|
||||||
# Rails.backtrace_cleaner.remove_silencers!
|
|
|
@ -1,30 +0,0 @@
|
||||||
# Be sure to restart your server when you modify this file.
|
|
||||||
|
|
||||||
# Define an application-wide content security policy
|
|
||||||
# For further information see the following documentation
|
|
||||||
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy
|
|
||||||
|
|
||||||
# Rails.application.config.content_security_policy do |policy|
|
|
||||||
# policy.default_src :self, :https
|
|
||||||
# policy.font_src :self, :https, :data
|
|
||||||
# policy.img_src :self, :https, :data
|
|
||||||
# policy.object_src :none
|
|
||||||
# policy.script_src :self, :https
|
|
||||||
# policy.style_src :self, :https
|
|
||||||
# # If you are using webpack-dev-server then specify webpack-dev-server host
|
|
||||||
# policy.connect_src :self, :https, "http://localhost:3035", "ws://localhost:3035" if Rails.env.development?
|
|
||||||
|
|
||||||
# # Specify URI for violation reports
|
|
||||||
# # policy.report_uri "/csp-violation-report-endpoint"
|
|
||||||
# end
|
|
||||||
|
|
||||||
# If you are using UJS then enable automatic nonce generation
|
|
||||||
# Rails.application.config.content_security_policy_nonce_generator = -> request { SecureRandom.base64(16) }
|
|
||||||
|
|
||||||
# Set the nonce only to specific directives
|
|
||||||
# Rails.application.config.content_security_policy_nonce_directives = %w(script-src)
|
|
||||||
|
|
||||||
# Report CSP violations to a specified URI
|
|
||||||
# For further information see the following documentation:
|
|
||||||
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy-Report-Only
|
|
||||||
# Rails.application.config.content_security_policy_report_only = true
|
|
|
@ -1,5 +0,0 @@
|
||||||
# Be sure to restart your server when you modify this file.
|
|
||||||
|
|
||||||
# Specify a serializer for the signed and encrypted cookie jars.
|
|
||||||
# Valid options are :json, :marshal, and :hybrid.
|
|
||||||
Rails.application.config.action_dispatch.cookies_serializer = :json
|
|
|
@ -1,7 +0,0 @@
|
||||||
# frozen_string_literal: true
|
|
||||||
Rails.application.config.middleware.insert_before 0, Rack::Cors do
|
|
||||||
allow do
|
|
||||||
origins '*'
|
|
||||||
resource '*', :headers => :any, :methods => [:get, :post, :options]
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -1,311 +0,0 @@
|
||||||
# frozen_string_literal: true
|
|
||||||
|
|
||||||
# Assuming you have not yet modified this file, each configuration option below
|
|
||||||
# is set to its default value. Note that some are commented out while others
|
|
||||||
# are not: uncommented lines are intended to protect your configuration from
|
|
||||||
# breaking changes in upgrades (i.e., in the event that future versions of
|
|
||||||
# Devise change the default values for those options).
|
|
||||||
#
|
|
||||||
# Use this hook to configure devise mailer, warden hooks and so forth.
|
|
||||||
# Many of these configuration options can be set straight in your model.
|
|
||||||
Devise.setup do |config|
|
|
||||||
# The secret key used by Devise. Devise uses this key to generate
|
|
||||||
# random tokens. Changing this key will render invalid all existing
|
|
||||||
# confirmation, reset password and unlock tokens in the database.
|
|
||||||
# Devise will use the `secret_key_base` as its `secret_key`
|
|
||||||
# by default. You can change it below and use your own secret key.
|
|
||||||
# config.secret_key = '29277d5b223db47045eeca0b6b65eacfa7460067b938a3d16cadb7f2cc127ce3faf38843342ff3c4b8b7056d791f893d5c8f37f3e09f46f68b245499b7465ef7'
|
|
||||||
|
|
||||||
# ==> Controller configuration
|
|
||||||
# Configure the parent class to the devise controllers.
|
|
||||||
# config.parent_controller = 'DeviseController'
|
|
||||||
|
|
||||||
# ==> Mailer Configuration
|
|
||||||
# Configure the e-mail address which will be shown in Devise::Mailer,
|
|
||||||
# note that it will be overwritten if you use your own mailer class
|
|
||||||
# with default "from" parameter.
|
|
||||||
config.mailer_sender = 'please-change-me-at-config-initializers-devise@example.com'
|
|
||||||
|
|
||||||
# Configure the class responsible to send e-mails.
|
|
||||||
# config.mailer = 'Devise::Mailer'
|
|
||||||
|
|
||||||
# Configure the parent class responsible to send e-mails.
|
|
||||||
# config.parent_mailer = 'ActionMailer::Base'
|
|
||||||
|
|
||||||
# ==> ORM configuration
|
|
||||||
# Load and configure the ORM. Supports :active_record (default) and
|
|
||||||
# :mongoid (bson_ext recommended) by default. Other ORMs may be
|
|
||||||
# available as additional gems.
|
|
||||||
require 'devise/orm/active_record'
|
|
||||||
|
|
||||||
# ==> Configuration for any authentication mechanism
|
|
||||||
# Configure which keys are used when authenticating a user. The default is
|
|
||||||
# just :email. You can configure it to use [:username, :subdomain], so for
|
|
||||||
# authenticating a user, both parameters are required. Remember that those
|
|
||||||
# parameters are used only when authenticating and not when retrieving from
|
|
||||||
# session. If you need permissions, you should implement that in a before filter.
|
|
||||||
# You can also supply a hash where the value is a boolean determining whether
|
|
||||||
# or not authentication should be aborted when the value is not present.
|
|
||||||
# config.authentication_keys = [:email]
|
|
||||||
|
|
||||||
# Configure parameters from the request object used for authentication. Each entry
|
|
||||||
# given should be a request method and it will automatically be passed to the
|
|
||||||
# find_for_authentication method and considered in your model lookup. For instance,
|
|
||||||
# if you set :request_keys to [:subdomain], :subdomain will be used on authentication.
|
|
||||||
# The same considerations mentioned for authentication_keys also apply to request_keys.
|
|
||||||
# config.request_keys = []
|
|
||||||
|
|
||||||
# Configure which authentication keys should be case-insensitive.
|
|
||||||
# These keys will be downcased upon creating or modifying a user and when used
|
|
||||||
# to authenticate or find a user. Default is :email.
|
|
||||||
config.case_insensitive_keys = [:email]
|
|
||||||
|
|
||||||
# Configure which authentication keys should have whitespace stripped.
|
|
||||||
# These keys will have whitespace before and after removed upon creating or
|
|
||||||
# modifying a user and when used to authenticate or find a user. Default is :email.
|
|
||||||
config.strip_whitespace_keys = [:email]
|
|
||||||
|
|
||||||
# Tell if authentication through request.params is enabled. True by default.
|
|
||||||
# It can be set to an array that will enable params authentication only for the
|
|
||||||
# given strategies, for example, `config.params_authenticatable = [:database]` will
|
|
||||||
# enable it only for database (email + password) authentication.
|
|
||||||
# config.params_authenticatable = true
|
|
||||||
|
|
||||||
# Tell if authentication through HTTP Auth is enabled. False by default.
|
|
||||||
# It can be set to an array that will enable http authentication only for the
|
|
||||||
# given strategies, for example, `config.http_authenticatable = [:database]` will
|
|
||||||
# enable it only for database authentication.
|
|
||||||
# For API-only applications to support authentication "out-of-the-box", you will likely want to
|
|
||||||
# enable this with :database unless you are using a custom strategy.
|
|
||||||
# The supported strategies are:
|
|
||||||
# :database = Support basic authentication with authentication key + password
|
|
||||||
# config.http_authenticatable = false
|
|
||||||
|
|
||||||
# If 401 status code should be returned for AJAX requests. True by default.
|
|
||||||
# config.http_authenticatable_on_xhr = true
|
|
||||||
|
|
||||||
# The realm used in Http Basic Authentication. 'Application' by default.
|
|
||||||
# config.http_authentication_realm = 'Application'
|
|
||||||
|
|
||||||
# It will change confirmation, password recovery and other workflows
|
|
||||||
# to behave the same regardless if the e-mail provided was right or wrong.
|
|
||||||
# Does not affect registerable.
|
|
||||||
# config.paranoid = true
|
|
||||||
|
|
||||||
# By default Devise will store the user in session. You can skip storage for
|
|
||||||
# particular strategies by setting this option.
|
|
||||||
# Notice that if you are skipping storage for all authentication paths, you
|
|
||||||
# may want to disable generating routes to Devise's sessions controller by
|
|
||||||
# passing skip: :sessions to `devise_for` in your config/routes.rb
|
|
||||||
config.skip_session_storage = [:http_auth]
|
|
||||||
|
|
||||||
# By default, Devise cleans up the CSRF token on authentication to
|
|
||||||
# avoid CSRF token fixation attacks. This means that, when using AJAX
|
|
||||||
# requests for sign in and sign up, you need to get a new CSRF token
|
|
||||||
# from the server. You can disable this option at your own risk.
|
|
||||||
# config.clean_up_csrf_token_on_authentication = true
|
|
||||||
|
|
||||||
# When false, Devise will not attempt to reload routes on eager load.
|
|
||||||
# This can reduce the time taken to boot the app but if your application
|
|
||||||
# requires the Devise mappings to be loaded during boot time the application
|
|
||||||
# won't boot properly.
|
|
||||||
# config.reload_routes = true
|
|
||||||
|
|
||||||
# ==> Configuration for :database_authenticatable
|
|
||||||
# For bcrypt, this is the cost for hashing the password and defaults to 12. If
|
|
||||||
# using other algorithms, it sets how many times you want the password to be hashed.
|
|
||||||
# The number of stretches used for generating the hashed password are stored
|
|
||||||
# with the hashed password. This allows you to change the stretches without
|
|
||||||
# invalidating existing passwords.
|
|
||||||
#
|
|
||||||
# Limiting the stretches to just one in testing will increase the performance of
|
|
||||||
# your test suite dramatically. However, it is STRONGLY RECOMMENDED to not use
|
|
||||||
# a value less than 10 in other environments. Note that, for bcrypt (the default
|
|
||||||
# algorithm), the cost increases exponentially with the number of stretches (e.g.
|
|
||||||
# a value of 20 is already extremely slow: approx. 60 seconds for 1 calculation).
|
|
||||||
config.stretches = Rails.env.test? ? 1 : 12
|
|
||||||
|
|
||||||
# Set up a pepper to generate the hashed password.
|
|
||||||
# config.pepper = '05fa28228bc7b540a749c0c38a2eb71aad34df6e92a00acbfe791a8c292bd73a93fcd6f515398c6fd9cb5bdb48bec196151783f10a311692e92606c761e810cf'
|
|
||||||
|
|
||||||
# Send a notification to the original email when the user's email is changed.
|
|
||||||
# config.send_email_changed_notification = false
|
|
||||||
|
|
||||||
# Send a notification email when the user's password is changed.
|
|
||||||
# config.send_password_change_notification = false
|
|
||||||
|
|
||||||
# ==> Configuration for :confirmable
|
|
||||||
# A period that the user is allowed to access the website even without
|
|
||||||
# confirming their account. For instance, if set to 2.days, the user will be
|
|
||||||
# able to access the website for two days without confirming their account,
|
|
||||||
# access will be blocked just in the third day.
|
|
||||||
# You can also set it to nil, which will allow the user to access the website
|
|
||||||
# without confirming their account.
|
|
||||||
# Default is 0.days, meaning the user cannot access the website without
|
|
||||||
# confirming their account.
|
|
||||||
# config.allow_unconfirmed_access_for = 2.days
|
|
||||||
|
|
||||||
# A period that the user is allowed to confirm their account before their
|
|
||||||
# token becomes invalid. For example, if set to 3.days, the user can confirm
|
|
||||||
# their account within 3 days after the mail was sent, but on the fourth day
|
|
||||||
# their account can't be confirmed with the token any more.
|
|
||||||
# Default is nil, meaning there is no restriction on how long a user can take
|
|
||||||
# before confirming their account.
|
|
||||||
# config.confirm_within = 3.days
|
|
||||||
|
|
||||||
# If true, requires any email changes to be confirmed (exactly the same way as
|
|
||||||
# initial account confirmation) to be applied. Requires additional unconfirmed_email
|
|
||||||
# db field (see migrations). Until confirmed, new email is stored in
|
|
||||||
# unconfirmed_email column, and copied to email column on successful confirmation.
|
|
||||||
config.reconfirmable = true
|
|
||||||
|
|
||||||
# Defines which key will be used when confirming an account
|
|
||||||
# config.confirmation_keys = [:email]
|
|
||||||
|
|
||||||
# ==> Configuration for :rememberable
|
|
||||||
# The time the user will be remembered without asking for credentials again.
|
|
||||||
# config.remember_for = 2.weeks
|
|
||||||
|
|
||||||
# Invalidates all the remember me tokens when the user signs out.
|
|
||||||
config.expire_all_remember_me_on_sign_out = true
|
|
||||||
|
|
||||||
# If true, extends the user's remember period when remembered via cookie.
|
|
||||||
# config.extend_remember_period = false
|
|
||||||
|
|
||||||
# Options to be passed to the created cookie. For instance, you can set
|
|
||||||
# secure: true in order to force SSL only cookies.
|
|
||||||
# config.rememberable_options = {}
|
|
||||||
|
|
||||||
# ==> Configuration for :validatable
|
|
||||||
# Range for password length.
|
|
||||||
config.password_length = 6..128
|
|
||||||
|
|
||||||
# Email regex used to validate email formats. It simply asserts that
|
|
||||||
# one (and only one) @ exists in the given string. This is mainly
|
|
||||||
# to give user feedback and not to assert the e-mail validity.
|
|
||||||
config.email_regexp = /\A[^@\s]+@[^@\s]+\z/
|
|
||||||
|
|
||||||
# ==> Configuration for :timeoutable
|
|
||||||
# The time you want to timeout the user session without activity. After this
|
|
||||||
# time the user will be asked for credentials again. Default is 30 minutes.
|
|
||||||
# config.timeout_in = 30.minutes
|
|
||||||
|
|
||||||
# ==> Configuration for :lockable
|
|
||||||
# Defines which strategy will be used to lock an account.
|
|
||||||
# :failed_attempts = Locks an account after a number of failed attempts to sign in.
|
|
||||||
# :none = No lock strategy. You should handle locking by yourself.
|
|
||||||
# config.lock_strategy = :failed_attempts
|
|
||||||
|
|
||||||
# Defines which key will be used when locking and unlocking an account
|
|
||||||
# config.unlock_keys = [:email]
|
|
||||||
|
|
||||||
# Defines which strategy will be used to unlock an account.
|
|
||||||
# :email = Sends an unlock link to the user email
|
|
||||||
# :time = Re-enables login after a certain amount of time (see :unlock_in below)
|
|
||||||
# :both = Enables both strategies
|
|
||||||
# :none = No unlock strategy. You should handle unlocking by yourself.
|
|
||||||
# config.unlock_strategy = :both
|
|
||||||
|
|
||||||
# Number of authentication tries before locking an account if lock_strategy
|
|
||||||
# is failed attempts.
|
|
||||||
# config.maximum_attempts = 20
|
|
||||||
|
|
||||||
# Time interval to unlock the account if :time is enabled as unlock_strategy.
|
|
||||||
# config.unlock_in = 1.hour
|
|
||||||
|
|
||||||
# Warn on the last attempt before the account is locked.
|
|
||||||
# config.last_attempt_warning = true
|
|
||||||
|
|
||||||
# ==> Configuration for :recoverable
|
|
||||||
#
|
|
||||||
# Defines which key will be used when recovering the password for an account
|
|
||||||
# config.reset_password_keys = [:email]
|
|
||||||
|
|
||||||
# Time interval you can reset your password with a reset password key.
|
|
||||||
# Don't put a too small interval or your users won't have the time to
|
|
||||||
# change their passwords.
|
|
||||||
config.reset_password_within = 6.hours
|
|
||||||
|
|
||||||
# When set to false, does not sign a user in automatically after their password is
|
|
||||||
# reset. Defaults to true, so a user is signed in automatically after a reset.
|
|
||||||
# config.sign_in_after_reset_password = true
|
|
||||||
|
|
||||||
# ==> Configuration for :encryptable
|
|
||||||
# Allow you to use another hashing or encryption algorithm besides bcrypt (default).
|
|
||||||
# You can use :sha1, :sha512 or algorithms from others authentication tools as
|
|
||||||
# :clearance_sha1, :authlogic_sha512 (then you should set stretches above to 20
|
|
||||||
# for default behavior) and :restful_authentication_sha1 (then you should set
|
|
||||||
# stretches to 10, and copy REST_AUTH_SITE_KEY to pepper).
|
|
||||||
#
|
|
||||||
# Require the `devise-encryptable` gem when using anything other than bcrypt
|
|
||||||
# config.encryptor = :sha512
|
|
||||||
|
|
||||||
# ==> Scopes configuration
|
|
||||||
# Turn scoped views on. Before rendering "sessions/new", it will first check for
|
|
||||||
# "users/sessions/new". It's turned off by default because it's slower if you
|
|
||||||
# are using only default views.
|
|
||||||
# config.scoped_views = false
|
|
||||||
|
|
||||||
# Configure the default scope given to Warden. By default it's the first
|
|
||||||
# devise role declared in your routes (usually :user).
|
|
||||||
# config.default_scope = :user
|
|
||||||
|
|
||||||
# Set this configuration to false if you want /users/sign_out to sign out
|
|
||||||
# only the current scope. By default, Devise signs out all scopes.
|
|
||||||
# config.sign_out_all_scopes = true
|
|
||||||
|
|
||||||
# ==> Navigation configuration
|
|
||||||
# Lists the formats that should be treated as navigational. Formats like
|
|
||||||
# :html, should redirect to the sign in page when the user does not have
|
|
||||||
# access, but formats like :xml or :json, should return 401.
|
|
||||||
#
|
|
||||||
# If you have any extra navigational formats, like :iphone or :mobile, you
|
|
||||||
# should add them to the navigational formats lists.
|
|
||||||
#
|
|
||||||
# The "*/*" below is required to match Internet Explorer requests.
|
|
||||||
# config.navigational_formats = ['*/*', :html]
|
|
||||||
|
|
||||||
# The default HTTP method used to sign out a resource. Default is :delete.
|
|
||||||
config.sign_out_via = :delete
|
|
||||||
|
|
||||||
# ==> OmniAuth
|
|
||||||
# Add a new OmniAuth provider. Check the wiki for more information on setting
|
|
||||||
# up on your models and hooks.
|
|
||||||
# config.omniauth :github, 'APP_ID', 'APP_SECRET', scope: 'user,public_repo'
|
|
||||||
|
|
||||||
# ==> Warden configuration
|
|
||||||
# If you want to use other strategies, that are not supported by Devise, or
|
|
||||||
# change the failure app, you can configure them inside the config.warden block.
|
|
||||||
#
|
|
||||||
# config.warden do |manager|
|
|
||||||
# manager.intercept_401 = false
|
|
||||||
# manager.default_strategies(scope: :user).unshift :some_external_strategy
|
|
||||||
# end
|
|
||||||
|
|
||||||
# ==> Mountable engine configurations
|
|
||||||
# When using Devise inside an engine, let's call it `MyEngine`, and this engine
|
|
||||||
# is mountable, there are some extra configurations to be taken into account.
|
|
||||||
# The following options are available, assuming the engine is mounted as:
|
|
||||||
#
|
|
||||||
# mount MyEngine, at: '/my_engine'
|
|
||||||
#
|
|
||||||
# The router that invoked `devise_for`, in the example above, would be:
|
|
||||||
# config.router_name = :my_engine
|
|
||||||
#
|
|
||||||
# When using OmniAuth, Devise cannot automatically set OmniAuth path,
|
|
||||||
# so you need to do it manually. For the users scope, it would be:
|
|
||||||
# config.omniauth_path_prefix = '/my_engine/users/auth'
|
|
||||||
|
|
||||||
# ==> Turbolinks configuration
|
|
||||||
# If your app is using Turbolinks, Turbolinks::Controller needs to be included to make redirection work correctly:
|
|
||||||
#
|
|
||||||
# ActiveSupport.on_load(:devise_failure_app) do
|
|
||||||
# include Turbolinks::Controller
|
|
||||||
# end
|
|
||||||
|
|
||||||
# ==> Configuration for :registerable
|
|
||||||
|
|
||||||
# When set to false, does not sign a user in automatically after their password is
|
|
||||||
# changed. Defaults to true, so a user is signed in automatically after changing a password.
|
|
||||||
# config.sign_in_after_change_password = true
|
|
||||||
end
|
|
|
@ -1,4 +0,0 @@
|
||||||
# Be sure to restart your server when you modify this file.
|
|
||||||
|
|
||||||
# Configure sensitive parameters which will be filtered from the log file.
|
|
||||||
Rails.application.config.filter_parameters += [:password]
|
|
|
@ -1,16 +0,0 @@
|
||||||
# Be sure to restart your server when you modify this file.
|
|
||||||
|
|
||||||
# Add new inflection rules using the following format. Inflections
|
|
||||||
# are locale specific, and you may define rules for as many different
|
|
||||||
# locales as you wish. All of these examples are active by default:
|
|
||||||
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
|
||||||
# inflect.plural /^(ox)$/i, '\1en'
|
|
||||||
# inflect.singular /^(ox)en/i, '\1'
|
|
||||||
# inflect.irregular 'person', 'people'
|
|
||||||
# inflect.uncountable %w( fish sheep )
|
|
||||||
# end
|
|
||||||
|
|
||||||
# These inflection rules are supported but not enabled by default:
|
|
||||||
# ActiveSupport::Inflector.inflections(:en) do |inflect|
|
|
||||||
# inflect.acronym 'RESTful'
|
|
||||||
# end
|
|
|
@ -1,4 +0,0 @@
|
||||||
# Be sure to restart your server when you modify this file.
|
|
||||||
|
|
||||||
# Add new mime types for use in respond_to blocks:
|
|
||||||
# Mime::Type.register "text/richtext", :rtf
|
|
|
@ -1,14 +0,0 @@
|
||||||
# Be sure to restart your server when you modify this file.
|
|
||||||
|
|
||||||
# This file contains settings for ActionController::ParamsWrapper which
|
|
||||||
# is enabled by default.
|
|
||||||
|
|
||||||
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
|
||||||
ActiveSupport.on_load(:action_controller) do
|
|
||||||
wrap_parameters format: [:json]
|
|
||||||
end
|
|
||||||
|
|
||||||
# To enable root element in JSON for ActiveRecord objects.
|
|
||||||
# ActiveSupport.on_load(:active_record) do
|
|
||||||
# self.include_root_in_json = true
|
|
||||||
# end
|
|
|
@ -1,65 +0,0 @@
|
||||||
# Additional translations at https://github.com/heartcombo/devise/wiki/I18n
|
|
||||||
|
|
||||||
en:
|
|
||||||
devise:
|
|
||||||
confirmations:
|
|
||||||
confirmed: "Your email address has been successfully confirmed."
|
|
||||||
send_instructions: "You will receive an email with instructions for how to confirm your email address in a few minutes."
|
|
||||||
send_paranoid_instructions: "If your email address exists in our database, you will receive an email with instructions for how to confirm your email address in a few minutes."
|
|
||||||
failure:
|
|
||||||
already_authenticated: "You are already signed in."
|
|
||||||
inactive: "Your account is not activated yet."
|
|
||||||
invalid: "Invalid %{authentication_keys} or password."
|
|
||||||
locked: "Your account is locked."
|
|
||||||
last_attempt: "You have one more attempt before your account is locked."
|
|
||||||
not_found_in_database: "Invalid %{authentication_keys} or password."
|
|
||||||
timeout: "Your session expired. Please sign in again to continue."
|
|
||||||
unauthenticated: "You need to sign in or sign up before continuing."
|
|
||||||
unconfirmed: "You have to confirm your email address before continuing."
|
|
||||||
mailer:
|
|
||||||
confirmation_instructions:
|
|
||||||
subject: "Confirmation instructions"
|
|
||||||
reset_password_instructions:
|
|
||||||
subject: "Reset password instructions"
|
|
||||||
unlock_instructions:
|
|
||||||
subject: "Unlock instructions"
|
|
||||||
email_changed:
|
|
||||||
subject: "Email Changed"
|
|
||||||
password_change:
|
|
||||||
subject: "Password Changed"
|
|
||||||
omniauth_callbacks:
|
|
||||||
failure: "Could not authenticate you from %{kind} because \"%{reason}\"."
|
|
||||||
success: "Successfully authenticated from %{kind} account."
|
|
||||||
passwords:
|
|
||||||
no_token: "You can't access this page without coming from a password reset email. If you do come from a password reset email, please make sure you used the full URL provided."
|
|
||||||
send_instructions: "You will receive an email with instructions on how to reset your password in a few minutes."
|
|
||||||
send_paranoid_instructions: "If your email address exists in our database, you will receive a password recovery link at your email address in a few minutes."
|
|
||||||
updated: "Your password has been changed successfully. You are now signed in."
|
|
||||||
updated_not_active: "Your password has been changed successfully."
|
|
||||||
registrations:
|
|
||||||
destroyed: "Bye! Your account has been successfully cancelled. We hope to see you again soon."
|
|
||||||
signed_up: "Welcome! You have signed up successfully."
|
|
||||||
signed_up_but_inactive: "You have signed up successfully. However, we could not sign you in because your account is not yet activated."
|
|
||||||
signed_up_but_locked: "You have signed up successfully. However, we could not sign you in because your account is locked."
|
|
||||||
signed_up_but_unconfirmed: "A message with a confirmation link has been sent to your email address. Please follow the link to activate your account."
|
|
||||||
update_needs_confirmation: "You updated your account successfully, but we need to verify your new email address. Please check your email and follow the confirmation link to confirm your new email address."
|
|
||||||
updated: "Your account has been updated successfully."
|
|
||||||
updated_but_not_signed_in: "Your account has been updated successfully, but since your password was changed, you need to sign in again."
|
|
||||||
sessions:
|
|
||||||
signed_in: "Signed in successfully."
|
|
||||||
signed_out: "Signed out successfully."
|
|
||||||
already_signed_out: "Signed out successfully."
|
|
||||||
unlocks:
|
|
||||||
send_instructions: "You will receive an email with instructions for how to unlock your account in a few minutes."
|
|
||||||
send_paranoid_instructions: "If your account exists, you will receive an email with instructions for how to unlock it in a few minutes."
|
|
||||||
unlocked: "Your account has been unlocked successfully. Please sign in to continue."
|
|
||||||
errors:
|
|
||||||
messages:
|
|
||||||
already_confirmed: "was already confirmed, please try signing in"
|
|
||||||
confirmation_period_expired: "needs to be confirmed within %{period}, please request a new one"
|
|
||||||
expired: "has expired, please request a new one"
|
|
||||||
not_found: "not found"
|
|
||||||
not_locked: "was not locked"
|
|
||||||
not_saved:
|
|
||||||
one: "1 error prohibited this %{resource} from being saved:"
|
|
||||||
other: "%{count} errors prohibited this %{resource} from being saved:"
|
|
|
@ -1,33 +0,0 @@
|
||||||
# Files in the config/locales directory are used for internationalization
|
|
||||||
# and are automatically loaded by Rails. If you want to use locales other
|
|
||||||
# than English, add the necessary files in this directory.
|
|
||||||
#
|
|
||||||
# To use the locales, use `I18n.t`:
|
|
||||||
#
|
|
||||||
# I18n.t 'hello'
|
|
||||||
#
|
|
||||||
# In views, this is aliased to just `t`:
|
|
||||||
#
|
|
||||||
# <%= t('hello') %>
|
|
||||||
#
|
|
||||||
# To use a different locale, set it with `I18n.locale`:
|
|
||||||
#
|
|
||||||
# I18n.locale = :es
|
|
||||||
#
|
|
||||||
# This would use the information in config/locales/es.yml.
|
|
||||||
#
|
|
||||||
# The following keys must be escaped otherwise they will not be retrieved by
|
|
||||||
# the default I18n backend:
|
|
||||||
#
|
|
||||||
# true, false, on, off, yes, no
|
|
||||||
#
|
|
||||||
# Instead, surround them with single quotes.
|
|
||||||
#
|
|
||||||
# en:
|
|
||||||
# 'true': 'foo'
|
|
||||||
#
|
|
||||||
# To learn more, please read the Rails Internationalization guide
|
|
||||||
# available at https://guides.rubyonrails.org/i18n.html.
|
|
||||||
|
|
||||||
en:
|
|
||||||
hello: "Hello world"
|
|
12
config/middlewares.ts
Normal file
12
config/middlewares.ts
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
export default [
|
||||||
|
'strapi::logger',
|
||||||
|
'strapi::errors',
|
||||||
|
'strapi::security',
|
||||||
|
'strapi::cors',
|
||||||
|
'strapi::poweredBy',
|
||||||
|
'strapi::query',
|
||||||
|
'strapi::body',
|
||||||
|
'strapi::session',
|
||||||
|
'strapi::favicon',
|
||||||
|
'strapi::public',
|
||||||
|
];
|
1
config/plugins.ts
Normal file
1
config/plugins.ts
Normal file
|
@ -0,0 +1 @@
|
||||||
|
export default () => ({});
|
|
@ -1,38 +0,0 @@
|
||||||
# Puma can serve each request in a thread from an internal thread pool.
|
|
||||||
# The `threads` method setting takes two numbers: a minimum and maximum.
|
|
||||||
# Any libraries that use thread pools should be configured to match
|
|
||||||
# the maximum value specified for Puma. Default is set to 5 threads for minimum
|
|
||||||
# and maximum; this matches the default thread size of Active Record.
|
|
||||||
#
|
|
||||||
max_threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 }
|
|
||||||
min_threads_count = ENV.fetch("RAILS_MIN_THREADS") { max_threads_count }
|
|
||||||
threads min_threads_count, max_threads_count
|
|
||||||
|
|
||||||
# Specifies the `port` that Puma will listen on to receive requests; default is 3000.
|
|
||||||
#
|
|
||||||
port ENV.fetch("PORT") { 3000 }
|
|
||||||
|
|
||||||
# Specifies the `environment` that Puma will run in.
|
|
||||||
#
|
|
||||||
environment ENV.fetch("RAILS_ENV") { "development" }
|
|
||||||
|
|
||||||
# Specifies the `pidfile` that Puma will use.
|
|
||||||
pidfile ENV.fetch("PIDFILE") { "tmp/pids/server.pid" }
|
|
||||||
|
|
||||||
# Specifies the number of `workers` to boot in clustered mode.
|
|
||||||
# Workers are forked web server processes. If using threads and workers together
|
|
||||||
# the concurrency of the application would be max `threads` * `workers`.
|
|
||||||
# Workers do not work on JRuby or Windows (both of which do not support
|
|
||||||
# processes).
|
|
||||||
#
|
|
||||||
# workers ENV.fetch("WEB_CONCURRENCY") { 2 }
|
|
||||||
|
|
||||||
# Use the `preload_app!` method when specifying a `workers` number.
|
|
||||||
# This directive tells Puma to first boot the application and load code
|
|
||||||
# before forking the application. This takes advantage of Copy On Write
|
|
||||||
# process behavior so workers use less memory.
|
|
||||||
#
|
|
||||||
# preload_app!
|
|
||||||
|
|
||||||
# Allow puma to be restarted by `rails restart` command.
|
|
||||||
plugin :tmp_restart
|
|
|
@ -1,7 +0,0 @@
|
||||||
Rails.application.routes.draw do
|
|
||||||
devise_for :admin_users, ActiveAdmin::Devise.config
|
|
||||||
ActiveAdmin.routes(self)
|
|
||||||
resources :messages, controller: 'messages'
|
|
||||||
resources :emails, controller: 'email'
|
|
||||||
|
|
||||||
end
|
|
10
config/server.ts
Normal file
10
config/server.ts
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
export default ({ env }) => ({
|
||||||
|
host: env('HOST', '0.0.0.0'),
|
||||||
|
port: env.int('PORT', 1337),
|
||||||
|
app: {
|
||||||
|
keys: env.array('APP_KEYS'),
|
||||||
|
},
|
||||||
|
webhooks: {
|
||||||
|
populateRelations: env.bool('WEBHOOKS_POPULATE_RELATIONS', false),
|
||||||
|
},
|
||||||
|
});
|
|
@ -1,6 +0,0 @@
|
||||||
Spring.watch(
|
|
||||||
".ruby-version",
|
|
||||||
".rbenv-vars",
|
|
||||||
"tmp/restart.txt",
|
|
||||||
"tmp/caching-dev.txt"
|
|
||||||
)
|
|
|
@ -1,34 +0,0 @@
|
||||||
test:
|
|
||||||
service: Disk
|
|
||||||
root: <%= Rails.root.join("tmp/storage") %>
|
|
||||||
|
|
||||||
local:
|
|
||||||
service: Disk
|
|
||||||
root: <%= Rails.root.join("storage") %>
|
|
||||||
|
|
||||||
# Use rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key)
|
|
||||||
# amazon:
|
|
||||||
# service: S3
|
|
||||||
# access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %>
|
|
||||||
# secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %>
|
|
||||||
# region: us-east-1
|
|
||||||
# bucket: your_own_bucket
|
|
||||||
|
|
||||||
# Remember not to checkin your GCS keyfile to a repository
|
|
||||||
# google:
|
|
||||||
# service: GCS
|
|
||||||
# project: your_project
|
|
||||||
# credentials: <%= Rails.root.join("path/to/gcs.keyfile") %>
|
|
||||||
# bucket: your_own_bucket
|
|
||||||
|
|
||||||
# Use rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key)
|
|
||||||
# microsoft:
|
|
||||||
# service: AzureStorage
|
|
||||||
# storage_account_name: your_account_name
|
|
||||||
# storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %>
|
|
||||||
# container: your_container_name
|
|
||||||
|
|
||||||
# mirror:
|
|
||||||
# service: Mirror
|
|
||||||
# primary: local
|
|
||||||
# mirrors: [ amazon, google, microsoft ]
|
|
|
@ -1,5 +0,0 @@
|
||||||
process.env.NODE_ENV = process.env.NODE_ENV || 'development'
|
|
||||||
|
|
||||||
const environment = require('./environment')
|
|
||||||
|
|
||||||
module.exports = environment.toWebpackConfig()
|
|
|
@ -1,3 +0,0 @@
|
||||||
const { environment } = require('@rails/webpacker')
|
|
||||||
|
|
||||||
module.exports = environment
|
|
7
config/webpack/plugins/jquery.js
vendored
7
config/webpack/plugins/jquery.js
vendored
|
@ -1,7 +0,0 @@
|
||||||
const webpack = require('webpack')
|
|
||||||
|
|
||||||
module.exports = new webpack.ProvidePlugin({
|
|
||||||
"$":"jquery",
|
|
||||||
"jQuery":"jquery",
|
|
||||||
"window.jQuery":"jquery"
|
|
||||||
});
|
|
|
@ -1,5 +0,0 @@
|
||||||
process.env.NODE_ENV = process.env.NODE_ENV || 'production'
|
|
||||||
|
|
||||||
const environment = require('./environment')
|
|
||||||
|
|
||||||
module.exports = environment.toWebpackConfig()
|
|
|
@ -1,5 +0,0 @@
|
||||||
process.env.NODE_ENV = process.env.NODE_ENV || 'development'
|
|
||||||
|
|
||||||
const environment = require('./environment')
|
|
||||||
|
|
||||||
module.exports = environment.toWebpackConfig()
|
|
|
@ -1,92 +0,0 @@
|
||||||
# Note: You must restart bin/webpack-dev-server for changes to take effect
|
|
||||||
|
|
||||||
default: &default
|
|
||||||
source_path: app/javascript
|
|
||||||
source_entry_path: packs
|
|
||||||
public_root_path: public
|
|
||||||
public_output_path: packs
|
|
||||||
cache_path: tmp/cache/webpacker
|
|
||||||
webpack_compile_output: true
|
|
||||||
|
|
||||||
# Additional paths webpack should lookup modules
|
|
||||||
# ['app/assets', 'engine/foo/app/assets']
|
|
||||||
additional_paths: []
|
|
||||||
|
|
||||||
# Reload manifest.json on all requests so we reload latest compiled packs
|
|
||||||
cache_manifest: false
|
|
||||||
|
|
||||||
# Extract and emit a css file
|
|
||||||
extract_css: false
|
|
||||||
|
|
||||||
static_assets_extensions:
|
|
||||||
- .jpg
|
|
||||||
- .jpeg
|
|
||||||
- .png
|
|
||||||
- .gif
|
|
||||||
- .tiff
|
|
||||||
- .ico
|
|
||||||
- .svg
|
|
||||||
- .eot
|
|
||||||
- .otf
|
|
||||||
- .ttf
|
|
||||||
- .woff
|
|
||||||
- .woff2
|
|
||||||
|
|
||||||
extensions:
|
|
||||||
- .mjs
|
|
||||||
- .js
|
|
||||||
- .sass
|
|
||||||
- .scss
|
|
||||||
- .css
|
|
||||||
- .module.sass
|
|
||||||
- .module.scss
|
|
||||||
- .module.css
|
|
||||||
- .png
|
|
||||||
- .svg
|
|
||||||
- .gif
|
|
||||||
- .jpeg
|
|
||||||
- .jpg
|
|
||||||
|
|
||||||
development:
|
|
||||||
<<: *default
|
|
||||||
compile: true
|
|
||||||
|
|
||||||
# Reference: https://webpack.js.org/configuration/dev-server/
|
|
||||||
dev_server:
|
|
||||||
https: false
|
|
||||||
host: localhost
|
|
||||||
port: 3035
|
|
||||||
public: localhost:3035
|
|
||||||
hmr: false
|
|
||||||
# Inline should be set to true if using HMR
|
|
||||||
inline: true
|
|
||||||
overlay: true
|
|
||||||
compress: true
|
|
||||||
disable_host_check: true
|
|
||||||
use_local_ip: false
|
|
||||||
quiet: false
|
|
||||||
pretty: false
|
|
||||||
headers:
|
|
||||||
'Access-Control-Allow-Origin': '*'
|
|
||||||
watch_options:
|
|
||||||
ignored: '**/node_modules/**'
|
|
||||||
|
|
||||||
|
|
||||||
test:
|
|
||||||
<<: *default
|
|
||||||
compile: true
|
|
||||||
|
|
||||||
# Compile test packs to a separate directory
|
|
||||||
public_output_path: packs-test
|
|
||||||
|
|
||||||
production:
|
|
||||||
<<: *default
|
|
||||||
|
|
||||||
# Production depends on precompilation of packs prior to booting for performance.
|
|
||||||
compile: true
|
|
||||||
|
|
||||||
# Extract and emit a css file
|
|
||||||
extract_css: true
|
|
||||||
|
|
||||||
# Cache manifest.json for performance
|
|
||||||
cache_manifest: true
|
|
|
@ -1,44 +0,0 @@
|
||||||
# frozen_string_literal: true
|
|
||||||
|
|
||||||
class DeviseCreateAdminUsers < ActiveRecord::Migration[6.0]
|
|
||||||
def change
|
|
||||||
create_table :admin_users do |t|
|
|
||||||
## Database authenticatable
|
|
||||||
t.string :email, null: false, default: ""
|
|
||||||
t.string :encrypted_password, null: false, default: ""
|
|
||||||
|
|
||||||
## Recoverable
|
|
||||||
t.string :reset_password_token
|
|
||||||
t.datetime :reset_password_sent_at
|
|
||||||
|
|
||||||
## Rememberable
|
|
||||||
t.datetime :remember_created_at
|
|
||||||
|
|
||||||
## Trackable
|
|
||||||
# t.integer :sign_in_count, default: 0, null: false
|
|
||||||
# t.datetime :current_sign_in_at
|
|
||||||
# t.datetime :last_sign_in_at
|
|
||||||
# t.string :current_sign_in_ip
|
|
||||||
# t.string :last_sign_in_ip
|
|
||||||
|
|
||||||
## Confirmable
|
|
||||||
# t.string :confirmation_token
|
|
||||||
# t.datetime :confirmed_at
|
|
||||||
# t.datetime :confirmation_sent_at
|
|
||||||
# t.string :unconfirmed_email # Only if using reconfirmable
|
|
||||||
|
|
||||||
## Lockable
|
|
||||||
# t.integer :failed_attempts, default: 0, null: false # Only if lock strategy is :failed_attempts
|
|
||||||
# t.string :unlock_token # Only if unlock strategy is :email or :both
|
|
||||||
# t.datetime :locked_at
|
|
||||||
|
|
||||||
|
|
||||||
t.timestamps null: false
|
|
||||||
end
|
|
||||||
|
|
||||||
add_index :admin_users, :email, unique: true
|
|
||||||
add_index :admin_users, :reset_password_token, unique: true
|
|
||||||
# add_index :admin_users, :confirmation_token, unique: true
|
|
||||||
# add_index :admin_users, :unlock_token, unique: true
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -1,16 +0,0 @@
|
||||||
class CreateActiveAdminComments < ActiveRecord::Migration[6.0]
|
|
||||||
def self.up
|
|
||||||
create_table :active_admin_comments do |t|
|
|
||||||
t.string :namespace
|
|
||||||
t.text :body
|
|
||||||
t.references :resource, polymorphic: true
|
|
||||||
t.references :author, polymorphic: true
|
|
||||||
t.timestamps
|
|
||||||
end
|
|
||||||
add_index :active_admin_comments, [:namespace]
|
|
||||||
end
|
|
||||||
|
|
||||||
def self.down
|
|
||||||
drop_table :active_admin_comments
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -1,11 +0,0 @@
|
||||||
class CreateMessages < ActiveRecord::Migration[6.0]
|
|
||||||
def change
|
|
||||||
create_table :messages do |t|
|
|
||||||
t.string :title
|
|
||||||
t.text :description
|
|
||||||
t.string :email, null: false
|
|
||||||
t.string :phone
|
|
||||||
t.timestamps
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user