Sakepediaは日本酒のオープンデータを作るためのプラットフォームです。
大枠で以下の技術要素を使って開発しています。(詳細はpackege.json参照)
Sakepediaについて、masterをプロテクトして、開発はdevelopで進めることにします。 プルリクエストはdevelopに向けてお願いします。:pray:
node-sass v4.14.1は Apple Silicon Mac で使えるようにするには、Nodeのバージョンを^14.16.0にし、node-sassのビルドにPython2系も必要になる。 macOS Monterey 12.3のアップデートでPython2.7がMacOSから削除されたので anyenv 等を使ってインストールする。
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