Commit b8db4053 authored by Mickaël Desfrênes's avatar Mickaël Desfrênes
Browse files

prepare for seperate UI apps

parent ea71ba7a
Loading
Loading
Loading
Loading

jama-frontend/.env

deleted100644 → 0
+0 −1
Original line number Diff line number Diff line
VUE_APP_URL_PATH=/
 No newline at end of file

jama-frontend/.gitignore

deleted100644 → 0
+0 −25
Original line number Diff line number Diff line
.DS_Store
node_modules
/dist


# local env files
.env.local
.env.*.local

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

webpack-stats.json

jama-frontend/Makefile

deleted100644 → 0
+0 −9
Original line number Diff line number Diff line
default:
	yarn build

serve:
	yarn serve

deploy-preprod: default
	rsync -Haurov ../mediatheque/static/dist/ jama@jama-pp.certic.unicaen.fr:/home/jama/jama/static/dist/
	scp webpack-stats.json jama@jama-pp.certic.unicaen.fr:/home/jama/jama/jama-frontend/webpack-stats.json
 No newline at end of file

jama-frontend/README.md

deleted100644 → 0
+0 −24
Original line number Diff line number Diff line
# jama-frontend

## Project setup
```
yarn install
```

### Compiles and hot-reloads for development
```
yarn serve
```

### Compiles and minifies for production
```
yarn build
```

### Lints and fixes files
```
yarn lint
```

### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).

jama-frontend/babel.config.js

deleted100644 → 0
+0 −5
Original line number Diff line number Diff line
module.exports = {
  presets: [
    '@vue/cli-plugin-babel/preset'
  ]
}
Loading