vue による client と、 REST-API による対応版
authorOHASHI, Norikazu <katz@neko-mori.sakura.ne.jp>
Sat, 1 Oct 2022 06:04:19 +0000 (15:04 +0900)
committerOHASHI, Norikazu <katz@neko-mori.sakura.ne.jp>
Sat, 1 Oct 2022 06:04:19 +0000 (15:04 +0900)
commit1316d662787172541e91bf41da131c46b1823d8a
tree2554032d484a64227c1e11cac80f9971ae99bbab
parent52fe897bcba28095131fe67b3c87147fb097ca62
vue による client と、 REST-API による対応版
22 files changed:
.gitignore
client/.eslintrc [new file with mode: 0644]
client/package.json [new file with mode: 0644]
client/src/.tern-port [new file with mode: 0644]
client/src/App.vue [new file with mode: 0644]
client/src/index.ts [new file with mode: 0644]
client/src/vue.d.ts [new file with mode: 0644]
client/tsconfig.json [new file with mode: 0644]
client/tslint.json [new file with mode: 0644]
client/webpack.config.js [new file with mode: 0644]
client/yarn.lock [new file with mode: 0644]
create_table.sql
restapi.apib [new file with mode: 0644]
sinatra/Gemfile
sinatra/app/controllers/restful_api.rb [new file with mode: 0644]
sinatra/app/controllers/spa_gui.rb [new file with mode: 0644]
sinatra/app/controllers/web_gui.rb
sinatra/app/models/books_db.rb
sinatra/app/models/tokens_db.rb [new file with mode: 0644]
sinatra/app/models/users_db.rb
sinatra/app/views/spa.haml [new file with mode: 0644]
sinatra/start.rb