Sakepediaは日本酒のオープンデータを作るためのプラットフォームです。
大枠で以下の技術要素を使って開発しています。(詳細はpackege.json参照)
- Nuxt.js
- Axios/Express
- MongoDB/Mongoose
- Bootstrap-Vue(一部Semantic UI)
- GitHub OAuth App
Sakepediaについて、masterをプロテクトして、開発はdevelopで進めることにします。 プルリクエストはdevelopに向けてお願いします。:pray:
- node v14.16.1
- yarn v1.22.5
- mongodb v4.2.8
- pm2 v4.5.6(for server)
node-sass v4.14.1は Apple Silicon Mac で使えるようにするには、Nodeのバージョンを^14.16.0にし、node-sassのビルドにPython2系も必要になる。 macOS Monterey 12.3のアップデートでPython2.7がMacOSから削除されたので anyenv 等を使ってインストールする。
- https://github.com/settings/developers
- OAuth Appsから新規にOAuth Appsを作成
- Homepage URL: http://localhost:3030
- Authorization callback URL: http://localhost:3030/callback
- 他は任意
Client ID
とClient Secret
を確認
# node version manage(if you need)
$ brew install n
$ n 14.16
# yarn(if you need)
$ npm install -g yarn
# mongodb(if you need)
$ brew tap mongodb/brew
$ brew install mongodb-community
$ brew services start mongodb-community
$ mongo
> use Sakepedia
switched to db Sakepedia
> exit
bye
# install dependencies
$ yarn install
# ENV
$ vi config/.env.production
$ vi config/.env.development
GITHUB_CLIENT_ID=GitHub OAuth AppのClient ID
GITHUB_CLIENT_SECRET=GitHub OAuth AppのClient Secret
BASE_URL=動作させるURL(なければhttp://localhost:3030)
MONGO_CONNECT=MONGODBの接続文字列(例 mongodb://localhost/Sakepedia)
JWT_SECRET=JWTを生成するためのSecret
# serve with hot reload at localhost:3030
$ yarn dev
# build for production and launch server
$ yarn build
$ pm2 start npm -- start
# generate static project
$ yarn generate
yarn run test:jest
update jest snapshots by running yarn run test:jest -u