Vue.js(Nuxt.js)で開発した自作のカレンダーサービスです。
Vercelで公開しています。 https://vue-calendar-plum.vercel.app/
APIインターフェイスにはGraphQL、状態管理ライブラリにはVuexを使用しています。
Golang製のバックエンドを別リポジトリで管理しています。 バックエンドはHerokuで公開しています。 https://whispering-retreat-77389.herokuapp.com/
# install dependencies
$ yarn install
# serve with hot reload at localhost:3000
$ yarn dev
# build for production and launch server
$ yarn build
$ yarn start
# generate static project
$ yarn generate
- For detailed explanation on how things work, check out Nuxt.js docs.
docker-compose up
direnv edit .
export BASE_URL=http://localhost:3002/query
3001番ポートからアクセスできます。
Yuki Ikegaya