Skip to content

Commit 952c4e4

Browse files
authored
Stage v1.0.0 (#2)
* free version v1.0.0 dev complete * readme file update and discord, docs, support file add and cicd setup * rename
1 parent 4319706 commit 952c4e4

File tree

110 files changed

+73698
-125
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+73698
-125
lines changed

.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[*.{js,jsx,mjs,cjs,ts,tsx,mts,cts,vue}]
2+
charset = utf-8
3+
indent_size = 2
4+
indent_style = space
5+
insert_final_newline = true
6+
trim_trailing_whitespace = true
7+
8+
end_of_line = lf
9+
max_line_length = 100

.env

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
VITE_APP_TITLE="Datta able Vue Bootstrap Dashboard Template"
2+
VITE_APP_DESCRIPTION="Datta Able is a premium Vue+Bootstrap Admin Template built to simplify and speed up your development."
3+
4+
VITE_APP_GOOGLE_MAPS_API_KEY=

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf

.github/workflows/prod.yml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: Prod - Deploy
2+
3+
# Controls when the action will run.
4+
on:
5+
# Triggers the workflow on push or pull request events but only for the master branch
6+
push:
7+
branches:
8+
- master
9+
pull_request:
10+
types:
11+
- closed
12+
branches:
13+
- master
14+
15+
jobs:
16+
if_merged:
17+
if: github.event.pull_request.merged == true
18+
name: 🎉 Deploy
19+
runs-on: ubuntu-latest
20+
21+
steps:
22+
- name: 🚚 Get latest code
23+
uses: actions/checkout@v4
24+
25+
- name: Install Node.js 22
26+
uses: actions/setup-node@v4
27+
with:
28+
node-version: '22'
29+
30+
- name: 🔨 Build Project
31+
run: |
32+
yarn
33+
yarn build-prod
34+
35+
- name: 📂 Deploy to Server
36+
uses: easingthemes/ssh-deploy@v4
37+
env:
38+
SSH_PRIVATE_KEY: ${{ secrets.SERVER_SSH_KEY }}
39+
# ARGS: "-rltgoDzvO --delete"
40+
SOURCE: 'dist/'
41+
REMOTE_HOST: 82.29.156.38
42+
REMOTE_USER: u106957989
43+
REMOTE_PORT: '65002'
44+
TARGET: domains/codedthemes.com/public_html/demos/admin-templates/datta-able/vue/free
45+
EXCLUDE: '/node_modules/'

.gitignore

Lines changed: 17 additions & 123 deletions
Original file line numberDiff line numberDiff line change
@@ -4,133 +4,27 @@ logs
44
npm-debug.log*
55
yarn-debug.log*
66
yarn-error.log*
7+
pnpm-debug.log*
78
lerna-debug.log*
8-
.pnpm-debug.log*
99

10-
# Diagnostic reports (https://nodejs.org/api/report.html)
11-
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
12-
13-
# Runtime data
14-
pids
15-
*.pid
16-
*.seed
17-
*.pid.lock
18-
19-
# Directory for instrumented libs generated by jscoverage/JSCover
20-
lib-cov
21-
22-
# Coverage directory used by tools like istanbul
10+
node_modules
11+
.DS_Store
12+
dist
13+
dist-ssr
2314
coverage
24-
*.lcov
25-
26-
# nyc test coverage
27-
.nyc_output
28-
29-
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
30-
.grunt
31-
32-
# Bower dependency directory (https://bower.io/)
33-
bower_components
34-
35-
# node-waf configuration
36-
.lock-wscript
37-
38-
# Compiled binary addons (https://nodejs.org/api/addons.html)
39-
build/Release
15+
*.local
4016

41-
# Dependency directories
42-
node_modules/
43-
jspm_packages/
17+
/cypress/videos/
18+
/cypress/screenshots/
4419

45-
# Snowpack dependency directory (https://snowpack.dev/)
46-
web_modules/
20+
# Editor directories and files
21+
.vscode/*
22+
!.vscode/extensions.json
23+
.idea
24+
*.suo
25+
*.ntvs*
26+
*.njsproj
27+
*.sln
28+
*.sw?
4729

48-
# TypeScript cache
4930
*.tsbuildinfo
50-
51-
# Optional npm cache directory
52-
.npm
53-
54-
# Optional eslint cache
55-
.eslintcache
56-
57-
# Optional stylelint cache
58-
.stylelintcache
59-
60-
# Microbundle cache
61-
.rpt2_cache/
62-
.rts2_cache_cjs/
63-
.rts2_cache_es/
64-
.rts2_cache_umd/
65-
66-
# Optional REPL history
67-
.node_repl_history
68-
69-
# Output of 'npm pack'
70-
*.tgz
71-
72-
# Yarn Integrity file
73-
.yarn-integrity
74-
75-
# dotenv environment variable files
76-
.env
77-
.env.development.local
78-
.env.test.local
79-
.env.production.local
80-
.env.local
81-
82-
# parcel-bundler cache (https://parceljs.org/)
83-
.cache
84-
.parcel-cache
85-
86-
# Next.js build output
87-
.next
88-
out
89-
90-
# Nuxt.js build / generate output
91-
.nuxt
92-
dist
93-
94-
# Gatsby files
95-
.cache/
96-
# Comment in the public line in if your project uses Gatsby and not Next.js
97-
# https://nextjs.org/blog/next-9-1#public-directory-support
98-
# public
99-
100-
# vuepress build output
101-
.vuepress/dist
102-
103-
# vuepress v2.x temp and cache directory
104-
.temp
105-
.cache
106-
107-
# vitepress build output
108-
**/.vitepress/dist
109-
110-
# vitepress cache directory
111-
**/.vitepress/cache
112-
113-
# Docusaurus cache and generated files
114-
.docusaurus
115-
116-
# Serverless directories
117-
.serverless/
118-
119-
# FuseBox cache
120-
.fusebox/
121-
122-
# DynamoDB Local files
123-
.dynamodb/
124-
125-
# TernJS port file
126-
.tern-port
127-
128-
# Stores VSCode versions used for testing VSCode extensions
129-
.vscode-test
130-
131-
# yarn v2
132-
.yarn/cache
133-
.yarn/unplugged
134-
.yarn/build-state.yml
135-
.yarn/install-state.gz
136-
.pnp.*

.prettierrc.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
{
3+
"$schema": "https://json.schemastore.org/prettierrc",
4+
"semi": false,
5+
"singleQuote": true,
6+
"printWidth": 100
7+
}

README.md

Lines changed: 172 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,172 @@
1-
# datta-able-free-vue-admin-template
2-
Free vue admin template
1+
# Datta Able Free Vue Admin Template
2+
3+
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
4+
[![Price](https://img.shields.io/badge/price-FREE-0098f7.svg)](https://codedthemes.com/item/datta-able-bootstrap-lite/)
5+
[![GitHub package version](https://img.shields.io/github/package-json/v/codedthemes/datta-able-free-vue-admin-template)](https://github.com/codedthemes/datta-able-free-vue-admin-template)
6+
[![Download ZIP](https://img.shields.io/badge/Download-ZIP-blue?style=flat-square&logo=github)](https://codedthemes.com/item/datta-able-vue-free-admin-template/)
7+
[![Join Discord](https://img.shields.io/badge/Join-Discord-5865F2?style=flat-square&logo=discord&logoColor=white)](https://discord.com/invite/p2E2WhCb6s)
8+
9+
Datta Able Admin Template comes with variety of components like Button, Badges, Tabs, Breadcrumb, Icons, Form elements, Table, Charts & Authentication pages.
10+
11+
The code structure is high flexible to use and modify.
12+
13+
Its design adapt any screen size easily even if retina screens.
14+
15+
It is modern concept dashboard design with eye catchy colors. Wish you happy to use our product in your project.
16+
✨ Support us! If you like this theme, click the ⭐ (Top right) and let it shine
17+
18+
![Datta Able Free Admin Template Preview Image](https://org-public-assets.s3.us-west-2.amazonaws.com/Free-Version-Banners/GITHUB-FREE-VUE-REPO.jpg)
19+
20+
## Table of contents
21+
22+
- [Getting Started](#getting-started)
23+
- [Download](#download)
24+
- [Why Datta Able?](#why-datta-able)
25+
- [What's included in Premium Version?](#whats-included-in-premium-version)
26+
- [Documentation](#documentation)
27+
- [Browser support](#browser-support)
28+
- [Technology Stack](#technology-stack)
29+
- [Other Technologies](#other-technologies)
30+
- 💰[Save more with Big Bundle](#save-more-with-big-bundle)💰
31+
- [More Vue Dashboard Templates](#more-vue-dashboard-templates)
32+
- [Issues?](#issues)
33+
- [License](#license)
34+
- [Contributor](#contributor)
35+
- [Useful Resources](#useful-resources)
36+
- [Community](#community)
37+
- [Follow us](#follow-us)
38+
39+
## Getting Started
40+
41+
1. Clone from Github
42+
43+
```
44+
git clone https://github.com/codedthemes/datta-able-free-vue-admin-template.git
45+
```
46+
47+
2. Install packages
48+
49+
```
50+
npm i
51+
```
52+
53+
3. Run project
54+
55+
```
56+
npm run dev
57+
```
58+
59+
## Download
60+
61+
- Datta Able Free
62+
- [Live Preview](https://codedthemes.com/demos/admin-templates/datta-able/vue/free)
63+
- [Download](https://codedthemes.com/item/datta-able-vue-free-admin-template/)
64+
- Datta Able Pro
65+
- [Live Preview](https://codedthemes.com/demos/admin-templates/datta-able/vue/)
66+
- [Download](https://codedthemes.com/item/datta-able-vue-admin-template)
67+
68+
## Why Datta Able?
69+
70+
Get started with a sweet set of features including:
71+
72+
- Sleek and modern UI design
73+
- Built with Bootstrap components
74+
- Fully responsive and compatible with all modern browsers
75+
- Well-structured code
76+
- Simple and comprehensive documentation guide
77+
78+
## What's included in Premium Version?
79+
80+
[Pro version](https://codedthemes.com/item/datta-able-vue-admin-template) of Datta Able vue Admin Template contains features like customize with light/dark/system, collapse, LTR / RTL, color presets and many more.
81+
82+
| [Datta Able Free](https://codedthemes.com/item/datta-able-vue-free-admin-template/) | [Datta able Pro](https://codedthemes.com/item/datta-able-vue-admin-template/) |
83+
| -------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------ |
84+
| **9** Demo pages | **130+** demo pages |
85+
| - | ✓ Multi-language |
86+
| - | ✓ Dark/Light Mode 🌓 |
87+
| - | ✓ 6+ Color Setting Option |
88+
| - | ✓ RTL |
89+
|[MIT License](https://github.com/codedthemes/datta-able-free-vue-admin-template/blob/master/LICENSE) |[Pro License](https://codedthemes.com/item/datta-able-vue-admin-template/) |
90+
91+
## Documentation
92+
93+
[Datta Able Vue Documentation](https://codedthemes.gitbook.io/datta/datta-able-vue) helps you with installation, deployment, and troubleshooting.
94+
95+
## Browser support
96+
97+
<img src="https://org-public-assets.s3.us-west-2.amazonaws.com/logos/chrome.png" width="45" height="45" > <img src="https://org-public-assets.s3.us-west-2.amazonaws.com/logos/edge.png" width="45" height="45" > <img src="https://org-public-assets.s3.us-west-2.amazonaws.com/logos/safari.png" width="45" height="45" > <img src="https://org-public-assets.s3.us-west-2.amazonaws.com/logos/firefox.png" width="45" height="45" > <img src="https://org-public-assets.s3.us-west-2.amazonaws.com/logos/opera.png" width="45" height="45" >
98+
99+
## Technology Stack
100+
101+
- Bootstrap 5
102+
- Vue3
103+
- npm/yarn package installer
104+
- Vite
105+
106+
## Other Technologies
107+
108+
| Technology | Free | Pro |
109+
| --------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ------------------------------------------------------------------------- |
110+
| <p align="center"><img src="https://org-public-assets.s3.us-west-2.amazonaws.com/logos/React.png" width="25" height="25"></p> | [**Free**](https://codedthemes.com/item/datta-able-react-free-admin-template/) | [**Pro**](https://codedthemes.com/item/datta-able-react-admin-template/) |
111+
| <p align="center"><img src="https://org-public-assets.s3.us-west-2.amazonaws.com/logos/Angular.png" width="30" height="30"></p> | [**Free**](https://codedthemes.com/item/datta-able-angular-lite/) | [**Pro**](https://codedthemes.com/item/datta-able-angular/) |
112+
| <p align="center"><img src="https://org-public-assets.s3.us-west-2.amazonaws.com/logos/tailwind.png" width="25" height="25"></p> | [**Free**](https://codedthemes.com/item/datta-able-free-tailwind-admin-template/) | [**Pro**](https://codedthemes.com/item/datta-able-tailwind-admin-template/) |
113+
| <p align="center"><img src="https://org-public-assets.s3.us-west-2.amazonaws.com/logos/laravel.png" width="25" height="25"></p> | - | [**Pro**](https://codedthemes.com/item/datta-able-laravel-admin-dashboard/) |
114+
115+
## Save more with Big Bundle
116+
117+
[![bundle-image](https://org-public-assets.s3.us-west-2.amazonaws.com/Banners/Bundle+banner.png)](https://links.codedthemes.com/jhFBJ)
118+
119+
## More Vue Dashboard Templates
120+
121+
| Dashboard | FREE | PRO |
122+
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
123+
| <img src="https://org-public-assets.s3.us-west-2.amazonaws.com/logos/Berry%20with%20name.png" height="30" style="display:inline-block; vertical-align:middle;"> | [**Free**](https://codedthemes.com/item/berry-free-vuetify-vuejs-admin-template/) | [**Pro**](https://codedthemes.com/item/berry-vue-admin-dashboard/)</span> |
124+
| <img src="https://org-public-assets.s3.us-west-2.amazonaws.com/logos/Mantis%20with%20name.png" height="30" style="display:inline-block; vertical-align:middle;"> | [**Free**](https://codedthemes.com/item/mantis-free-vuetify-vuejs-admin-template/) | [**Pro**](https://codedthemes.com/item/mantis-vue-admin-template/)</span> |
125+
126+
## Issues
127+
128+
If you found a bug in any version, please generate a [GitHub issue](https://github.com/codedthemes/datta-able-bootstrap-dashboard/issues). We are trying our best to resolve the issue.
129+
130+
## License
131+
132+
- Licensed under [MIT](https://github.com/codedthemes/datta-able-bootstrap-dashboard/blob/readme/LICENSE)
133+
- Copyright © [CodedThemes](https://codedthemes.com/)
134+
135+
## Contributor
136+
137+
**CodedThemes Team**
138+
139+
- https://x.com/codedthemes
140+
- https://github.com/codedthemes
141+
142+
**Rakesh Nakrani**
143+
144+
- https://x.com/rakesh_nakrani
145+
146+
**Brijesh Dobariya**
147+
148+
- https://x.com/dobaria_brijesh
149+
150+
## Useful Resources
151+
152+
- [More Admin Templates From CodedThemes](https://codedthemes.com/item/category/admin-templates/)
153+
- [Freebies From CodedThemes](https://codedthemes.com/item/category/free-templates/)
154+
- [Big Bundles](https://codedthemes.com/item/big-bundle/)
155+
- [Figma UI Kits](https://codedthemes.com/item/category/templates/figma/)
156+
- [Affiliate Program](https://codedthemes.com/affiliate/)
157+
- [Blogs](https://blog.codedthemes.com/)
158+
159+
## Community
160+
161+
- 👥Follow [@codedthemes](https://x.com/codedthemes)
162+
- 🔗Join [Discord](https://discord.com/invite/p2E2WhCb6s)
163+
- 🔔Subscribe to [Codedtheme Blogs](https://blog.codedthemes.com/)
164+
165+
## Follow Us
166+
167+
- [Twitter](https://twitter.com/codedthemes) 🐦
168+
- [Dribbble](https://dribbble.com/codedthemes) 🏀
169+
- [Github](https://github.com/codedthemes) 🐙
170+
- [LinkedIn](https://www.linkedin.com/company/codedthemes/) 💼
171+
- [Instagram](https://www.instagram.com/codedthemes/) 📷
172+
- [Facebook](https://www.facebook.com/codedthemes) 🟦

0 commit comments

Comments
 (0)