]> gitweb.mndrdr.org Git - arelpe.git/commit
acb.boo lives on rails
authorAidan Cornelius-Bell <[email protected]>
Sat, 14 Sep 2024 20:34:52 +0000 (06:04 +0930)
committerAidan Cornelius-Bell <[email protected]>
Sun, 15 Sep 2024 00:28:40 +0000 (09:58 +0930)
commit4571755450fa0d9c2a5575291746ecbeeb7035db
tree06f8783819fe788ac29cade1b39eb105702578a2
acb.boo lives on rails
165 files changed:
.DS_Store [new file with mode: 0644]
.dockerignore [new file with mode: 0644]
.gitattributes [new file with mode: 0644]
.github/dependabot.yml [new file with mode: 0644]
.github/workflows/ci.yml [new file with mode: 0644]
.gitignore [new file with mode: 0644]
.rubocop.yml [new file with mode: 0644]
.ruby-version [new file with mode: 0644]
Dockerfile [new file with mode: 0644]
Gemfile [new file with mode: 0644]
Gemfile.lock [new file with mode: 0644]
README.md [new file with mode: 0644]
Rakefile [new file with mode: 0644]
app/.DS_Store [new file with mode: 0644]
app/assets/config/manifest.js [new file with mode: 0644]
app/assets/images/.keep [new file with mode: 0644]
app/assets/images/logo-192.png [new file with mode: 0644]
app/assets/stylesheets/application.css [new file with mode: 0644]
app/controllers/.DS_Store [new file with mode: 0644]
app/controllers/api/.DS_Store [new file with mode: 0644]
app/controllers/api/v1/api_controller.rb [new file with mode: 0644]
app/controllers/api_keys_controller.rb [new file with mode: 0644]
app/controllers/application_controller.rb [new file with mode: 0644]
app/controllers/concerns/.DS_Store [new file with mode: 0644]
app/controllers/concerns/.keep [new file with mode: 0644]
app/controllers/concerns/admin_authenticatable.rb [new file with mode: 0644]
app/controllers/posts_controller.rb [new file with mode: 0644]
app/controllers/pubview_controller.rb [new file with mode: 0644]
app/helpers/api_keys_helper.rb [new file with mode: 0644]
app/helpers/application_helper.rb [new file with mode: 0644]
app/helpers/posts_helper.rb [new file with mode: 0644]
app/helpers/pubview_helper.rb [new file with mode: 0644]
app/jobs/application_job.rb [new file with mode: 0644]
app/mailers/application_mailer.rb [new file with mode: 0644]
app/models/.DS_Store [new file with mode: 0644]
app/models/api_key.rb [new file with mode: 0644]
app/models/application_record.rb [new file with mode: 0644]
app/models/concerns/.keep [new file with mode: 0644]
app/models/post.rb [new file with mode: 0644]
app/models/user.rb [new file with mode: 0644]
app/services/markdown_renderer.rb [new file with mode: 0644]
app/views/.DS_Store [new file with mode: 0644]
app/views/api_keys/index.html.erb [new file with mode: 0644]
app/views/api_keys/new.html.erb [new file with mode: 0644]
app/views/api_keys/show.html.erb [new file with mode: 0644]
app/views/devise/base_template.html.erb [new file with mode: 0644]
app/views/devise/confirmations/new.html.erb [new file with mode: 0644]
app/views/devise/mailer/confirmation_instructions.html.erb [new file with mode: 0644]
app/views/devise/mailer/email_changed.html.erb [new file with mode: 0644]
app/views/devise/mailer/password_change.html.erb [new file with mode: 0644]
app/views/devise/mailer/reset_password_instructions.html.erb [new file with mode: 0644]
app/views/devise/mailer/unlock_instructions.html.erb [new file with mode: 0644]
app/views/devise/passwords/edit.html.erb [new file with mode: 0644]
app/views/devise/passwords/new.html.erb [new file with mode: 0644]
app/views/devise/registrations/edit.html.erb [new file with mode: 0644]
app/views/devise/registrations/new.html.erb [new file with mode: 0644]
app/views/devise/sessions/new.html.erb [new file with mode: 0644]
app/views/devise/shared/_error_messages.html.erb [new file with mode: 0644]
app/views/devise/shared/_links.html.erb [new file with mode: 0644]
app/views/devise/unlocks/new.html.erb [new file with mode: 0644]
app/views/layouts/.DS_Store [new file with mode: 0644]
app/views/layouts/application.html.erb [new file with mode: 0644]
app/views/layouts/mailer.html.erb [new file with mode: 0644]
app/views/layouts/mailer.text.erb [new file with mode: 0644]
app/views/posts/_form.html.erb [new file with mode: 0644]
app/views/posts/_post.html.erb [new file with mode: 0644]
app/views/posts/edit.html.erb [new file with mode: 0644]
app/views/posts/index.html.erb [new file with mode: 0644]
app/views/posts/new.html.erb [new file with mode: 0644]
app/views/posts/show.html.erb [new file with mode: 0644]
app/views/pubview/index.html.erb [new file with mode: 0644]
app/views/pubview/post.html.erb [new file with mode: 0644]
app/views/pubview/rss.rss.builder [new file with mode: 0644]
app/views/pwa/manifest.json.erb [new file with mode: 0644]
app/views/pwa/service-worker.js [new file with mode: 0644]
bin/brakeman [new file with mode: 0755]
bin/bundle [new file with mode: 0755]
bin/docker-entrypoint [new file with mode: 0755]
bin/rails [new file with mode: 0755]
bin/rake [new file with mode: 0755]
bin/rubocop [new file with mode: 0755]
bin/setup [new file with mode: 0755]
config.ru [new file with mode: 0644]
config/application.rb [new file with mode: 0644]
config/boot.rb [new file with mode: 0644]
config/credentials.yml.enc [new file with mode: 0644]
config/database.yml [new file with mode: 0644]
config/environment.rb [new file with mode: 0644]
config/environments/development.rb [new file with mode: 0644]
config/environments/production.rb [new file with mode: 0644]
config/environments/test.rb [new file with mode: 0644]
config/initializers/assets.rb [new file with mode: 0644]
config/initializers/content_security_policy.rb [new file with mode: 0644]
config/initializers/devise.rb [new file with mode: 0644]
config/initializers/filter_parameter_logging.rb [new file with mode: 0644]
config/initializers/inflections.rb [new file with mode: 0644]
config/initializers/permissions_policy.rb [new file with mode: 0644]
config/locales/devise.en.yml [new file with mode: 0644]
config/locales/en.yml [new file with mode: 0644]
config/puma.rb [new file with mode: 0644]
config/routes.rb [new file with mode: 0644]
config/storage.yml [new file with mode: 0644]
db/migrate/20240914073802_create_posts.rb [new file with mode: 0644]
db/migrate/20240914073955_devise_create_users.rb [new file with mode: 0644]
db/migrate/20240914095138_create_api_keys.rb [new file with mode: 0644]
db/schema.rb [new file with mode: 0644]
db/seeds.rb [new file with mode: 0644]
lib/assets/.keep [new file with mode: 0644]
lib/tasks/.keep [new file with mode: 0644]
log/.keep [new file with mode: 0644]
public/.DS_Store [new file with mode: 0644]
public/404.html [new file with mode: 0644]
public/406-unsupported-browser.html [new file with mode: 0644]
public/422.html [new file with mode: 0644]
public/500.html [new file with mode: 0644]
public/apple-touch-icon.png [new file with mode: 0644]
public/favicon.ico [new file with mode: 0644]
public/fonts/.DS_Store [new file with mode: 0644]
public/fonts/ColfaxLight.woff [new file with mode: 0644]
public/fonts/ColfaxLightItalic.woff [new file with mode: 0644]
public/fonts/ColfaxMedium.woff [new file with mode: 0644]
public/fonts/ColfaxMediumItalic.woff [new file with mode: 0644]
public/fonts/ColfaxRegular.woff [new file with mode: 0644]
public/fonts/ColfaxRegularItalic.woff [new file with mode: 0644]
public/fonts/InriaSans-Bold.ttf [new file with mode: 0644]
public/fonts/InriaSans-BoldItalic.ttf [new file with mode: 0644]
public/fonts/InriaSans-Italic.ttf [new file with mode: 0644]
public/fonts/InriaSans-Light.ttf [new file with mode: 0644]
public/fonts/InriaSans-LightItalic.ttf [new file with mode: 0644]
public/fonts/InriaSans-Regular.ttf [new file with mode: 0644]
public/fonts/Meta_Correspondence_Pro_Bold.otf [new file with mode: 0644]
public/fonts/Meta_Correspondence_Pro_Bold_Italic.otf [new file with mode: 0644]
public/fonts/Meta_Correspondence_Pro_Italic.otf [new file with mode: 0644]
public/fonts/Meta_Correspondence_Pro_Regular.otf [new file with mode: 0644]
public/icon-192-maskable.png [new file with mode: 0644]
public/icon-192.png [new file with mode: 0644]
public/icon-512-maskable.png [new file with mode: 0644]
public/icon-512.png [new file with mode: 0644]
public/icon.png [new file with mode: 0644]
public/logo-192.png [new file with mode: 0644]
public/robots.txt [new file with mode: 0644]
storage/.keep [new file with mode: 0644]
test/application_system_test_case.rb [new file with mode: 0644]
test/controllers/.keep [new file with mode: 0644]
test/controllers/api_keys_controller_test.rb [new file with mode: 0644]
test/controllers/posts_controller_test.rb [new file with mode: 0644]
test/controllers/pubview_controller_test.rb [new file with mode: 0644]
test/fixtures/api_keys.yml [new file with mode: 0644]
test/fixtures/files/.keep [new file with mode: 0644]
test/fixtures/posts.yml [new file with mode: 0644]
test/fixtures/users.yml [new file with mode: 0644]
test/helpers/.keep [new file with mode: 0644]
test/integration/.keep [new file with mode: 0644]
test/mailers/.keep [new file with mode: 0644]
test/models/.keep [new file with mode: 0644]
test/models/api_key_test.rb [new file with mode: 0644]
test/models/post_test.rb [new file with mode: 0644]
test/models/user_test.rb [new file with mode: 0644]
test/system/.keep [new file with mode: 0644]
test/system/posts_test.rb [new file with mode: 0644]
test/test_helper.rb [new file with mode: 0644]
tmp/.keep [new file with mode: 0644]
tmp/pids/.keep [new file with mode: 0644]
tmp/storage/.keep [new file with mode: 0644]
vendor/.keep [new file with mode: 0644]