Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
AllanJeremy committed Jan 30, 2023
0 parents commit 1a4a13c
Show file tree
Hide file tree
Showing 10 changed files with 4,934 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .env.local.sample
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=you-publishable-key
CLERK_SECRET_KEY=your-secret-key
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
node_modules
*.log*
.nuxt
.nitro
.cache
.output
.env
dist
.env
2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
shamefully-hoist=true
strict-peer-dependencies=false
42 changes: 42 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Nuxt 3 Minimal Starter

Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.

## Setup

Make sure to install the dependencies:

```bash
# yarn
yarn install

# npm
npm install

# pnpm
pnpm install
```

## Development Server

Start the development server on http://localhost:3000

```bash
npm run dev
```

## Production

Build the application for production:

```bash
npm run build
```

Locally preview production build:

```bash
npm run preview
```

Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.
4 changes: 4 additions & 0 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
srcDir: "src",
});
18 changes: 18 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
},
"devDependencies": {
"nuxt": "^3.1.0"
},
"dependencies": {
"@clerk/clerk-js": "^4.24.0",
"pinia": "^2.0.29",
"sass": "^1.57.1"
}
}
43 changes: 43 additions & 0 deletions src/app.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600&display=swap");

*,
*:before,
*:after {
box-sizing: border-box;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

html,
body {
font-family: "Source Sans Pro", sans-serif;
font-size: 16px;
font-weight: 400;
line-height: 20px;
padding: 0;
margin: 0;
}

body {
min-height: 100vh;
display: flex;
flex-direction: column;
}

a {
color: inherit;
text-decoration: none;
}

h1 {
font-size: 1.75rem;
line-height: 35px;
}

h1,
h2 {
text-align: center;
}
h4 {
margin-bottom: 0;
}
9 changes: 9 additions & 0 deletions src/app.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<template>
<div>
<NuxtPage />
</div>
</template>

<script setup></script>

<style lang="scss" src="./app.scss"></style>
4 changes: 4 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
// https://nuxt.com/docs/guide/concepts/typescript
"extends": "./.nuxt/tsconfig.json"
}
Loading

0 comments on commit 1a4a13c

Please sign in to comment.