Skip to content

Commit 2a17755

Browse files
committed
Initial commit
0 parents  commit 2a17755

File tree

14 files changed

+26574
-0
lines changed

14 files changed

+26574
-0
lines changed

.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
.DS_Store
2+
node_modules
3+
/dist
4+
5+
6+
# local env files
7+
.env.local
8+
.env.*.local
9+
10+
# Log files
11+
npm-debug.log*
12+
yarn-debug.log*
13+
yarn-error.log*
14+
pnpm-debug.log*
15+
16+
# Editor directories and files
17+
.idea
18+
.vscode
19+
*.suo
20+
*.ntvs*
21+
*.njsproj
22+
*.sln
23+
*.sw?

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# jitsi iframe
2+
3+
Clean jitsi IFrame configuration
4+
5+
### Demo
6+
7+
https://jitsi-iframe.herokuapp.com
8+
9+
### Project setup
10+
```
11+
npm install
12+
```
13+
14+
### Compiles and hot-reloads for development
15+
```
16+
npm run serve
17+
```

babel.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
presets: [
3+
'@vue/cli-plugin-babel/preset'
4+
]
5+
}

package-lock.json

Lines changed: 26327 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
{
2+
"name": "jitsi-iframe",
3+
"version": "0.1.0",
4+
"private": true,
5+
"scripts": {
6+
"serve": "vue-cli-service serve",
7+
"build": "vue-cli-service build",
8+
"lint": "vue-cli-service lint",
9+
"postinstall": "if test \"$NODE_ENV\" = \"production\" ; then npm run build ; fi ",
10+
"start": "node server.js"
11+
},
12+
"dependencies": {
13+
"@mycure/vue-jitsi-meet": "^0.0.7",
14+
"buefy": "^0.9.7",
15+
"core-js": "^3.6.5",
16+
"express": "^4.17.1",
17+
"serve-static": "^1.14.1",
18+
"uniqid": "^5.3.0",
19+
"vue": "^2.6.11",
20+
"vue-router": "^3.5.1"
21+
},
22+
"devDependencies": {
23+
"@vue/cli-plugin-babel": "~4.5.0",
24+
"@vue/cli-plugin-eslint": "~4.5.0",
25+
"@vue/cli-service": "~4.5.0",
26+
"babel-eslint": "^10.1.0",
27+
"eslint": "^6.7.2",
28+
"eslint-plugin-vue": "^6.2.2",
29+
"vue-template-compiler": "^2.6.11"
30+
},
31+
"eslintConfig": {
32+
"root": true,
33+
"env": {
34+
"node": true
35+
},
36+
"extends": [
37+
"plugin:vue/essential",
38+
"eslint:recommended"
39+
],
40+
"parserOptions": {
41+
"parser": "babel-eslint"
42+
},
43+
"rules": {}
44+
},
45+
"browserslist": [
46+
"> 1%",
47+
"last 2 versions",
48+
"not dead"
49+
]
50+
}

public/favicon.ico

101 KB
Binary file not shown.

public/favicon.png

1.51 KB
Loading

public/index.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!DOCTYPE html>
2+
<html lang="">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width,initial-scale=1.0">
7+
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
8+
<title><%= htmlWebpackPlugin.options.title %></title>
9+
</head>
10+
<body>
11+
<noscript>
12+
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
13+
</noscript>
14+
<div id="app"></div>
15+
<!-- built files will be auto injected -->
16+
</body>
17+
</html>

server.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
const express = require('express')
2+
const serveStatic = require('serve-static')
3+
const path = require('path')
4+
const app = express()
5+
app.use(serveStatic(path.join(__dirname, 'dist')))
6+
app.listen(process.env.PORT)

src/App.vue

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<template>
2+
<div id="app">
3+
<router-view></router-view>
4+
</div>
5+
</template>

0 commit comments

Comments
 (0)