Browse Source

AGPLv3 licence

master
pvincent 4 years ago
parent
commit
1f38521196
  1. 5
      .vscode/settings.json
  2. 15
      LICENCE
  3. 17
      README.md
  4. 11
      TODO.md
  5. 11
      doc/INDEX.md
  6. 4
      vite.config.ts

5
.vscode/settings.json

@ -0,0 +1,5 @@
{
"cSpell.words": [
"VAPARA"
]
}

15
LICENCE

@ -0,0 +1,15 @@
Vapara-vue3, frontend shop communicating with Dolibarr backend
Copyright (C) 2021 Prestalibre.re
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.

17
README.md

@ -2,19 +2,4 @@ VAPARA-VUE3
=========== ===========
more [doc](doc/INDEX.md) more [doc](doc/INDEX.md)
## Expected Features
* [ ] login/logout
* [ ] fake rest api
* [ ] i18n
## First Initialization
* npm init vite-app vapara-vue3
* cd vapara-vue3
* npm install
* npm install typescript
* ...tsconfig.json, shims-vue.d.ts, main.ts, index.html
* see [vue3+typescript+vite](https://stackoverflow.com/questions/63724523/how-to-add-typescript-to-vue-3-and-vite-project#64438876)
* npm run dev
todo [TODO](TODO.md)

11
TODO.md

@ -1,8 +1,13 @@
TODO TODO
==== ====
## TODO
## ARCHI
* [ ] composition API * [ ] composition API
* [ ] eslint * [ ] eslint
* [ ] WindyCss * [ ] WindyCss
## FEATURE
* [ ] login/logout
* [ ] fake rest api
* [ ] i18n

11
doc/INDEX.md

@ -1,4 +1,13 @@
DOCUMENTATION DOCUMENTATION
============= =============
to be continued...
## First Initialization
* npm init vite-app vapara-vue3
* cd vapara-vue3
* npm install
* npm install typescript
* ...tsconfig.json, shims-vue.d.ts, main.ts, index.html
* see [vue3+typescript+vite](https://stackoverflow.com/questions/63724523/how-to-add-typescript-to-vue-3-and-vite-project#64438876)
* npm run dev

4
vite.config.ts

@ -1,6 +1,6 @@
import pkg from './package.json' import pkg from './package.json'
import { execSync } from 'child_process' import { execSync } from 'child_process'
const stdout = execSync("git describe --tags `git rev-list --tags --max-count=1`")
console.log(stdout)
const gitVersion = execSync("git describe --tags `git rev-list --tags --max-count=1`").toString()
console.log(gitVersion)
console.log(`vite.config.js loaded ${JSON.stringify(pkg.version)}`) console.log(`vite.config.js loaded ${JSON.stringify(pkg.version)}`)
Loading…
Cancel
Save