Skip to content

Commit

Permalink
push
Browse files Browse the repository at this point in the history
  • Loading branch information
tranphuocloc070699 committed Jul 28, 2023
1 parent 44d347a commit e4ff078
Show file tree
Hide file tree
Showing 75 changed files with 4,084 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/backend-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
environment_name: ${{ secrets.EB_ENV_NAME }}
version_label: ${{ steps.build-number.outputs.BUILD_NUMBER }}
region: ${{ secrets.EB_REGION }}
deployment_package: server/Dockerrun.aws.json
deployment_package: ../Dockerrun.aws.json

- name: Commit and Push Dockerrun.aws.json
run: |
Expand Down
24 changes: 24 additions & 0 deletions client/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Nuxt dev/build outputs
.output
.nuxt
.nitro
.cache
dist

# Node dependencies
node_modules
package-lock.json

# Logs
logs
*.log

# Misc
.DS_Store
.fleet
.idea

# Local env files
.env
.env.*
!.env.example
2 changes: 2 additions & 0 deletions client/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
shamefully-hoist=true
strict-peer-dependencies=false
File renamed without changes.
63 changes: 63 additions & 0 deletions client/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# 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
# npm
npm install

# pnpm
pnpm install

# yarn
yarn install
```

## Development Server

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

```bash
# npm
npm run dev

# pnpm
pnpm run dev

# yarn
yarn dev
```

## Production

Build the application for production:

```bash
# npm
npm run build

# pnpm
pnpm run build

# yarn
yarn build
```

Locally preview production build:

```bash
# npm
npm run preview

# pnpm
pnpm run preview

# yarn
yarn preview
```

Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.
21 changes: 21 additions & 0 deletions client/app.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<template>
<div>

<NuxtLayout>
<NuxtPage/>
</NuxtLayout>

</div>
</template>

<script lang="ts">
export default defineNuxtComponent({
})
</script>

<style lang="scss" scoped>
</style>
5 changes: 5 additions & 0 deletions client/assets/css/prism.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions client/assets/css/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.center-1280{
@apply w-full mx-auto max-w-7xl px-4
}
.grid-auto-fit{
grid-template-columns: repeat(auto-fit,minmax(286px,1fr));
}
.grid-auto-fill{
grid-template-columns: repeat(auto-fill,minmax(286px,1fr));
}
13 changes: 13 additions & 0 deletions client/assets/css/tailwind.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@tailwind base;
@tailwind components;
@tailwind utilities;



@layer base {
html {
font-family: 'Roboto', system-ui, sans-serif;
line-height: 1.8rem;
}
}
Loading

0 comments on commit e4ff078

Please sign in to comment.