yakshaveinc / tasks

distributed roadmap
The Unlicense
1 stars 0 forks source link

Hacking hackerspace #57

Open abitrolly opened 4 years ago

abitrolly commented 4 years ago
➜  ~ podman run --rm wappalyzer/cli https://hackerspace.by | jq .   
{
  "urls": {
    "https://hackerspace.by/": {
      "status": 200
    }
  },
  "applications": [
    {
      "name": "Bootstrap",
      "confidence": "100",
      "version": "3.4.1",
      "icon": "Bootstrap.png",
      "website": "https://getbootstrap.com",
      "categories": [
        {
          "18": "Web Frameworks"
        }
      ]
    },
    {
      "name": "Chart.js",
      "confidence": "100",
      "version": null,
      "icon": "Chart.js.svg",
      "website": "https://www.chartjs.org",
      "categories": [
        {
          "25": "JavaScript Graphics"
        }
      ]
    },
    {
      "name": "CloudFlare",
      "confidence": "100",
      "version": null,
      "icon": "CloudFlare.svg",
      "website": "http://www.cloudflare.com",
      "categories": [
        {
          "31": "CDN"
        }
      ]
    },
    {
      "name": "Google Analytics",
      "confidence": "100",
      "version": null,
      "icon": "Google Analytics.svg",
      "website": "http://google.com/analytics",
      "categories": [
        {
          "10": "Analytics"
        }
      ]
    },
    {
      "name": "Nginx",
      "confidence": "100",
      "version": null,
      "icon": "Nginx.svg",
      "website": "http://nginx.org/en",
      "categories": [
        {
          "22": "Web Servers"
        },
        {
          "64": "Reverse Proxy"
        }
      ]
    },
    {
      "name": "Ruby on Rails",
      "confidence": "50",
      "version": null,
      "icon": "Ruby on Rails.png",
      "website": "https://rubyonrails.org",
      "categories": [
        {
          "18": "Web Frameworks"
        }
      ]
    },
    {
      "name": "jQuery",
      "confidence": "100",
      "version": "1.12.4",
      "icon": "jQuery.svg",
      "website": "https://jquery.com",
      "categories": [
        {
          "59": "JavaScript Libraries"
        }
      ]
    },
    {
      "name": "Ruby",
      "confidence": "0",
      "version": null,
      "icon": "Ruby.png",
      "website": "http://ruby-lang.org",
      "categories": [
        {
          "27": "Programming Languages"
        }
      ]
    }
  ],
  "meta": {
    "language": null
  }
}
abitrolly commented 4 years ago
podman build . -t docker.io/abitrolly/hackerspace.by
podman push docker.io/abitrolly/hackerspace.by
abitrolly commented 4 years ago
podman run docker.io/abitrolly/hackerspace.by bash
# rake routes
** Invoke routes (first_time)
** Invoke environment (first_time)
** Execute environment
** Execute routes
                               Prefix Verb   URI Pattern                                      Controller#Action
                             settings GET    /settings(.:format)                              settings#index
                                      POST   /settings(.:format)                              settings#create
                          new_setting GET    /settings/new(.:format)                          settings#new
                         edit_setting GET    /settings/:id/edit(.:format)                     settings#edit
                              setting GET    /settings/:id(.:format)                          settings#show
                                      PATCH  /settings/:id(.:format)                          settings#update
                                      PUT    /settings/:id(.:format)                          settings#update
                                      DELETE /settings/:id(.:format)                          settings#destroy
                                 root GET    /                                                main#index
                   new_device_session GET    /devices/sign_in(.:format)                       devise/sessions#new
                       device_session POST   /devices/sign_in(.:format)                       devise/sessions#create
               destroy_device_session DELETE /devices/sign_out(.:format)                      devise/sessions#destroy
                     new_user_session GET    /users/sign_in(.:format)                         devise/sessions#new
                         user_session POST   /users/sign_in(.:format)                         devise/sessions#create
                 destroy_user_session DELETE /users/sign_out(.:format)                        devise/sessions#destroy
                    new_user_password GET    /users/password/new(.:format)                    devise/passwords#new
                   edit_user_password GET    /users/password/edit(.:format)                   devise/passwords#edit
                        user_password PATCH  /users/password(.:format)                        devise/passwords#update
                                      PUT    /users/password(.:format)                        devise/passwords#update
                                      POST   /users/password(.:format)                        devise/passwords#create
                             projects GET    /projects(.:format)                              projects#index
                                      POST   /projects(.:format)                              projects#create
                          new_project GET    /projects/new(.:format)                          projects#new
                         edit_project GET    /projects/:id/edit(.:format)                     projects#edit
                              project GET    /projects/:id(.:format)                          projects#show
                                      PATCH  /projects/:id(.:format)                          projects#update
                                      PUT    /projects/:id(.:format)                          projects#update
                                      DELETE /projects/:id(.:format)                          projects#destroy
                           news_index GET    /news(.:format)                                  news#index
                                      POST   /news(.:format)                                  news#create
                             new_news GET    /news/new(.:format)                              news#new
                            edit_news GET    /news/:id/edit(.:format)                         news#edit
                                 news GET    /news/:id(.:format)                              news#show
                                      PATCH  /news/:id(.:format)                              news#update
                                      PUT    /news/:id(.:format)                              news#update
                                      DELETE /news/:id(.:format)                              news#destroy
                              devices GET    /devices(.:format)                               devices#index
                               device GET    /devices/:id(.:format)                           devices#show
                         add_mac_user POST   /hackers/:id/add_mac(.:format)                   hackers#add_mac
                      remove_mac_user DELETE /hackers/:id/remove_mac(.:format)                hackers#remove_mac
                           find_users GET    /hackers/find(.:format)                          hackers#find_by_mac
                       detected_users POST   /hackers/detected(.:format)                      hackers#detected_at_hackerspace
                                users GET    /hackers(.:format)                               hackers#index
                            edit_user GET    /hackers/:id/edit(.:format)                      hackers#edit
                                 user GET    /hackers/:id(.:format)                           hackers#show
                                      PATCH  /hackers/:id(.:format)                           hackers#update
                                      PUT    /hackers/:id(.:format)                           hackers#update
                               thanks GET    /thanks(.:format)                                thanks#index
                                      POST   /thanks(.:format)                                thanks#create
                            new_thank GET    /thanks/new(.:format)                            thanks#new
                           edit_thank GET    /thanks/:id/edit(.:format)                       thanks#edit
                                thank GET    /thanks/:id(.:format)                            thanks#show
                                      PATCH  /thanks/:id(.:format)                            thanks#update
                                      PUT    /thanks/:id(.:format)                            thanks#update
                                      DELETE /thanks/:id(.:format)                            thanks#destroy
                                rules GET    /rules(.:format)                                 main#rules
                             calendar GET    /calendar(.:format)                              main#calendar
                             contacts GET    /contacts(.:format)                              main#contacts
                            procedure GET    /procedure(.:format)                             main#procedure
                                board GET    /board(.:format)                                 main#board
                              tariffs GET    /tariffs(.:format)                               main#tariffs
                             howtopay GET    /howtopay(.:format)                              main#howtopay
                                chart GET    /chart(.:format)                                 main#chart
                               useful GET    /useful(.:format)                                hackers#useful
                             spaceapi GET    /spaceapi(.:format)                              main#spaceapi {:format=>"json"}
                         wiki_gateway        /wiki                                            #<WikiGateway:0x000055c508967f30 @app=nil, @streaming=true, @ssl_verify_none=false, @backend=#<URI::HTTP http://localhost:4567/>, @read_timeout=60>
                admin_dashboard_index GET    /admin/dashboard(.:format)                       admin/dashboard#index
                          admin_users POST   /admin/users(.:format)                           admin/users#create
                       new_admin_user GET    /admin/users/new(.:format)                       admin/users#new
                       admin_payments GET    /admin/payments(.:format)                        admin/payments#index
                                      POST   /admin/payments(.:format)                        admin/payments#create
                    new_admin_payment GET    /admin/payments/new(.:format)                    admin/payments#new
                   edit_admin_payment GET    /admin/payments/:id/edit(.:format)               admin/payments#edit
                        admin_payment GET    /admin/payments/:id(.:format)                    admin/payments#show
                                      PATCH  /admin/payments/:id(.:format)                    admin/payments#update
                                      PUT    /admin/payments/:id(.:format)                    admin/payments#update
                                      DELETE /admin/payments/:id(.:format)                    admin/payments#destroy
              admin_erip_transactions GET    /admin/erip_transactions(.:format)               admin/erip_transactions#index
                                      POST   /admin/erip_transactions(.:format)               admin/erip_transactions#create
           new_admin_erip_transaction GET    /admin/erip_transactions/new(.:format)           admin/erip_transactions#new
          edit_admin_erip_transaction GET    /admin/erip_transactions/:id/edit(.:format)      admin/erip_transactions#edit
               admin_erip_transaction GET    /admin/erip_transactions/:id(.:format)           admin/erip_transactions#show
                                      PATCH  /admin/erip_transactions/:id(.:format)           admin/erip_transactions#update
                                      PUT    /admin/erip_transactions/:id(.:format)           admin/erip_transactions#update
                                      DELETE /admin/erip_transactions/:id(.:format)           admin/erip_transactions#destroy
              admin_bank_transactions GET    /admin/bank_transactions(.:format)               admin/bank_transactions#index
                                      POST   /admin/bank_transactions(.:format)               admin/bank_transactions#create
           new_admin_bank_transaction GET    /admin/bank_transactions/new(.:format)           admin/bank_transactions#new
          edit_admin_bank_transaction GET    /admin/bank_transactions/:id/edit(.:format)      admin/bank_transactions#edit
               admin_bank_transaction GET    /admin/bank_transactions/:id(.:format)           admin/bank_transactions#show
                                      PATCH  /admin/bank_transactions/:id(.:format)           admin/bank_transactions#update
                                      PUT    /admin/bank_transactions/:id(.:format)           admin/bank_transactions#update
                                      DELETE /admin/bank_transactions/:id(.:format)           admin/bank_transactions#destroy
  admin_bank_transactions_mass_update POST   /admin/bank_transactions/mass_update(.:format)   admin/bank_transactions#mass_update
admin_erip_transactions_bepaid_notify POST   /admin/erip_transactions/bepaid_notify(.:format) admin/erip_transactions#bepaid_notify
                           add_events GET    /events/add(.:format)                            events#add
                               events GET    /events(.:format)                                events#index