diff --git a/.env b/.env new file mode 100644 index 0000000..10826da --- /dev/null +++ b/.env @@ -0,0 +1,2 @@ +VITE_DISCORD_CLIENT_ID=YOUR_CLIENT_ID +DISCORD_CLIENT_SECRET=YOUR_CLIENT_SECRET \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..924c508 --- /dev/null +++ b/.gitignore @@ -0,0 +1,30 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules + +# Sensitive environment variables +.env + +# Modules + built files +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/README.md b/README.md new file mode 100644 index 0000000..3a6d470 --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +# Discord Activity: Getting Started Guide + +This template is used in the [Building An Activity](https://discord.com/developers/docs/activities/building-an-activity) tutorial in the Discord Developer Docs. + +Read more about building Discord Activities with the Embedded App SDK at [https://discord.com/developers/docs/activities/overview](https://discord.com/developers/docs/activities/overview). + diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..de2884b --- /dev/null +++ b/package-lock.json @@ -0,0 +1,6 @@ +{ + "name": "getting-started-activity", + "lockfileVersion": 3, + "requires": true, + "packages": {} +}