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

Feat/b2b employee management #1303

Draft
wants to merge 26 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
5aaac0a
feat(composables): b2b employee management
mdanilowicz Sep 9, 2024
08355be
feat(composables): roles composable
mdanilowicz Sep 10, 2024
a8af1d1
Merge remote-tracking branch 'origin' into feat/b2b-employee-management
mdanilowicz Sep 16, 2024
709e932
feat: add b2b employee management module
mdanilowicz Sep 22, 2024
37fd34c
feat: merge main
mdanilowicz Sep 23, 2024
d9e1a1b
feat: pnpm format
mdanilowicz Sep 23, 2024
4d69435
Merge remote-tracking branch 'origin' into feat/b2b-employee-management
mdanilowicz Sep 24, 2024
e3ffaa4
Merge branch 'main' into feat/b2b-employee-management
BrocksiNet Sep 24, 2024
f5ffa53
feat: update packages
mdanilowicz Sep 24, 2024
84cf0e5
Merge branch 'feat/b2b-employee-management' of https://github.com/sho…
mdanilowicz Sep 24, 2024
ddb1a03
feat: add creating new employee
mdanilowicz Sep 27, 2024
3944d08
feat: add types
mdanilowicz Sep 30, 2024
e28e6cf
Merge remote-tracking branch 'origin' into feat/b2b-employee-management
mdanilowicz Oct 22, 2024
6dcb340
Merge remote-tracking branch 'origin' into feat/b2b-employee-management
mdanilowicz Oct 28, 2024
26d07a9
Merge remote-tracking branch 'origin' into feat/b2b-employee-management
mdanilowicz Nov 4, 2024
81ac4b2
Merge remote-tracking branch 'origin' into feat/b2b-employee-management
mdanilowicz Nov 4, 2024
acbf01c
feat: update lock file
mdanilowicz Nov 4, 2024
a76e50b
feat: add missing files
mdanilowicz Nov 4, 2024
dbdae5a
feat: update styles
mdanilowicz Nov 5, 2024
422d00d
Merge remote-tracking branch 'origin' into feat/b2b-employee-management
mdanilowicz Nov 5, 2024
0052ee4
feat: roles init styles
mdanilowicz Nov 6, 2024
59a0909
feat: merge main
mdanilowicz Dec 3, 2024
abee4c6
feat: update types
mdanilowicz Dec 3, 2024
8adf804
Merge remote-tracking branch 'origin' into feat/b2b-employee-management
mdanilowicz Jan 14, 2025
31d8da8
Merge remote-tracking branch 'origin' into feat/b2b-employee-management
mdanilowicz Jan 16, 2025
46eafb4
feat: lock fix
mdanilowicz Jan 16, 2025
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
Prev Previous commit
Next Next commit
feat: add b2b employee management module
  • Loading branch information
mdanilowicz committed Sep 22, 2024
commit 709e9325c236a9d9059796fef3878982a659ade3
24 changes: 24 additions & 0 deletions examples/b2b-employee-management/.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
75 changes: 75 additions & 0 deletions examples/b2b-employee-management/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
# 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

# bun
bun install
```

## Development Server

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

```bash
# npm
npm run dev

# pnpm
pnpm run dev

# yarn
yarn dev

# bun
bun run dev
```

## Production

Build the application for production:

```bash
# npm
npm run build

# pnpm
pnpm run build

# yarn
yarn build

# bun
bun run build
```

Locally preview production build:

```bash
# npm
npm run preview

# pnpm
pnpm run preview

# yarn
yarn preview

# bun
bun run preview
```

Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.
Loading