Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refinement: nuxt project initialization #108

Merged
merged 2 commits into from
Nov 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Nuxt dev/build outputs
.output
.data
.nuxt
.nitro
.cache
dist

# Node dependencies
node_modules

# Logs
logs
*.log

# Misc
.DS_Store
.fleet
.idea

# Local env files
.env
.env.*
!.env.example
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"cSpell.words": [
"vuejs"
]
}
71 changes: 71 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
<p align="center">
<img width="128" src="https://raw.githubusercontent.com/vuejs-jp/home/master/.github/assets/vuejs-jp.png" alt="Vue.js Japan User Group">
</p>

<h1 align="center">Vue.js 日本ユーザーグループ</h1>

<p align="center">
<a href="https://github.com/vuejs-jp/home/actions">
<img src="https://github.com/vuejs-jp/home/workflows/Test/badge.svg" alt="GitHub Actions">
</a>
<a href="https://github.com/vuejs-jp/home/blob/master/LICENSE">
<img src="https://img.shields.io/npm/l/vue.svg" alt="License">
</a>
</p>

> [!WARNING]
> このリポジトリは現在大規模な改修を行っています。\
> 現在, https://vuejs-jp.org に公開中のウェブサイトのソースコードは [`legacy` ブランチ](https://github.com/vuejs-jp/home/tree/legacy) にあります。\
> 回収のロードマップについては https://github.com/vuejs-jp/home/discussions/98 をご覧ください。

Vue.js 日本ユーザーグループへようこそ。私たちは、年に一度の大規模カンファレンス **“Vue Fes Japan”** の運営や、**Vue.js 公式ドキュメントの日本語翻訳**をはじめ、日本における Vue.js の普及と、Vue.js エコシステムへの貢献を行っている**日本最大の Vue.js コミュニティ**です。

Vue.js 日本ユーザグループは、

- 日本における Vue.js の普及
- 日本語による Vue.js に関する情報の共有、およびディスカッション
- Vue.js への貢献

を目的としています。

Vue.js に興味のある方でしたらどなたでもお気軽にご参加ください。

## コミュニケーション

- [Vue.js オフィシャルフォーラム](http://forum.vuejs.org)
- [Vue.js 日本ユーザーグループ 公式 Slack](https://join.slack.com/t/vuejs-jp/shared_invite/zt-vmg3iysl-~CPGAxFMWwa0Fnu2IqtMdQ)
- [Vue.js 日本ユーザーグループ 公式 Twitter](https://twitter.com/vuefes)
- [Vue.js 日本ユーザーグループ 公式 note](https://note.com/vuejs_jp)

## 活動

- [Vue.js 公式ドキュメント 日本語翻訳プロジェクト](https://github.com/vuejs-jp/ja.vuejs.org)
- [Nuxt.js 公式ドキュメント 日本語翻訳プロジェクト](https://github.com/vuejs-jp/ja.nuxtjs.org/wiki)
- [Vue.js Meetup イベント](http://vuejs-meetup.connpass.com)

## ツールスポンサー

<table>
<tbody>
<tr>
<td align="center" valign="middle">
<a href="https://docs.esa.io/posts/239/" target="_blank">
<img width="196px" src="https://raw.githubusercontent.com/vuejs-jp/home/master/.github/assets/esa.png" alt="esa">
</a>
</td>
<td align="center" valign="middle">
<a href="http://slack.com/" target="_blank">
<img width="196px" src="https://raw.githubusercontent.com/vuejs-jp/home/master/.github/assets/slack.png" alt="Slack">
</a>
</td>
</tr>
</tbody>
</table>

## 行動規範

Vue.js 日本ユーザーグループが掲げる[行動規範](https://github.com/vuejs-jp/home/blob/master/.github/CODE_OF_CONDUCT.md)をご確認ください。

## ウェブサイト開発への参加

Vue.js 日本ユーザーグループの公式ウェブサイトは、コミュニティの支援によって成り立っています。誰でも自由に開発に参加することができます。公式ウェブサイトの環境セットアップや開発の進め方については[コントリビューションガイド](https://github.com/vuejs-jp/home/blob/master/.github/CONTRIBUTING.md)をご確認ください。
6 changes: 6 additions & 0 deletions app/app.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<template>
<div>
<NuxtRouteAnnouncer />
<NuxtWelcome />
</div>
</template>
6 changes: 6 additions & 0 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: "2024-04-03",
future: { compatibilityVersion: 4 },
devtools: { enabled: true },
});
18 changes: 18 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "vuejs-jp.org",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
},
"dependencies": {
"nuxt": "^3.14.159",
"vue": "latest",
"vue-router": "latest"
},
"packageManager": "[email protected]"
}
Loading