新增learn-kubernetes(https://github.com/yyong-brs/learn-kubernetes)相关文件
This commit is contained in:
31
learn/learn-kubernetes-master/kiamol/ch11/lab/bulletin-board/Jenkinsfile
vendored
Normal file
31
learn/learn-kubernetes-master/kiamol/ch11/lab/bulletin-board/Jenkinsfile
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
pipeline {
|
||||
agent any
|
||||
stages {
|
||||
stage('Audit tools') {
|
||||
steps {
|
||||
sh '''
|
||||
git version
|
||||
buildctl --version
|
||||
kubectl version --short
|
||||
helm version --short
|
||||
'''
|
||||
}
|
||||
}
|
||||
stage('Build') {
|
||||
steps {
|
||||
echo "Building image tag: ${REGISTRY_SERVER}/${REGISTRY_USER}/bulletin-board:${BUILD_NUMBER}-kiamol"
|
||||
dir ('ch11/lab/bulletin-board') {
|
||||
sh 'chmod +x ci/build.sh && ./ci/build.sh'
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('Run') {
|
||||
steps {
|
||||
echo "Deploying to test"
|
||||
dir ('ch11/lab/bulletin-board') {
|
||||
sh 'chmod +x ci/run.sh && ./ci/run.sh'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
#!/bin/sh
|
||||
|
||||
buildctl --addr tcp://buildkitd:1234 \
|
||||
build \
|
||||
--frontend=gateway.v0 \
|
||||
--opt source=kiamol/buildkit-buildpacks \
|
||||
--local context=src \
|
||||
--output type=image,name=${REGISTRY_SERVER}/${REGISTRY_USER}/bulletin-board:${BUILD_NUMBER}-kiamol,push=true
|
||||
@@ -0,0 +1,8 @@
|
||||
#!/bin/sh
|
||||
|
||||
helm upgrade --install \
|
||||
--atomic \
|
||||
--set registryServer=${REGISTRY_SERVER},registryUser=${REGISTRY_USER},imageBuildNumber=${BUILD_NUMBER} \
|
||||
--namespace kiamol-ch11-test \
|
||||
bulletin-board-lab \
|
||||
helm/bulletin-board
|
||||
@@ -0,0 +1,23 @@
|
||||
# Patterns to ignore when building packages.
|
||||
# This supports shell glob matching, relative path matching, and
|
||||
# negation (prefixed with !). Only one pattern per line.
|
||||
.DS_Store
|
||||
# Common VCS dirs
|
||||
.git/
|
||||
.gitignore
|
||||
.bzr/
|
||||
.bzrignore
|
||||
.hg/
|
||||
.hgignore
|
||||
.svn/
|
||||
# Common backup files
|
||||
*.swp
|
||||
*.bak
|
||||
*.tmp
|
||||
*.orig
|
||||
*~
|
||||
# Various IDEs
|
||||
.project
|
||||
.idea/
|
||||
*.tmproj
|
||||
.vscode/
|
||||
@@ -0,0 +1,6 @@
|
||||
apiVersion: v2
|
||||
name: bulletin-board
|
||||
description: Kiamol Ch11 app
|
||||
type: application
|
||||
version: 0.1.0
|
||||
appVersion: 1.0.0
|
||||
@@ -0,0 +1,29 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: {{ .Release.Name }}
|
||||
namespace: {{ .Release.Namespace }}
|
||||
labels:
|
||||
app.kubernetes.io/name: bulletin-board
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
kiamol: ch11-lab
|
||||
spec:
|
||||
selector:
|
||||
matchLabels:
|
||||
app.kubernetes.io/name: bulletin-board
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app.kubernetes.io/name: bulletin-board
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
spec:
|
||||
containers:
|
||||
- name: bulletin-board
|
||||
image: {{ .Values.registryServer }}/{{ .Values.registryUser }}/bulletin-board:{{ .Values.imageBuildNumber }}-kiamol
|
||||
imagePullPolicy: Always
|
||||
ports:
|
||||
- name: http
|
||||
containerPort: 8080
|
||||
imagePullSecrets:
|
||||
- name: {{ .Values.registrySecretName }}
|
||||
@@ -0,0 +1,17 @@
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: {{ .Release.Name }}
|
||||
namespace: {{ .Release.Namespace }}
|
||||
labels:
|
||||
app.kubernetes.io/name: bulletin-board
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
kiamol: ch11-lab
|
||||
spec:
|
||||
ports:
|
||||
- port: {{ .Values.servicePort }}
|
||||
targetPort: http
|
||||
selector:
|
||||
app.kubernetes.io/name: bulletin-board
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
type: {{ .Values.serviceType }}
|
||||
@@ -0,0 +1,12 @@
|
||||
# port for the Service to listen on
|
||||
servicePort: 8012
|
||||
# type of the Service:
|
||||
serviceType: LoadBalancer
|
||||
# domain of the registry server - e.g docker.io for Docker Hub
|
||||
registryServer: docker.io
|
||||
# user portion of the image repostory:
|
||||
registryUser: kiamol
|
||||
# build number portion of the image tag:
|
||||
imageBuildNumber: dev
|
||||
# name of the Secret containing registry credentials:
|
||||
registrySecretName: registry-creds
|
||||
59
learn/learn-kubernetes-master/kiamol/ch11/lab/bulletin-board/src/.gitignore
vendored
Normal file
59
learn/learn-kubernetes-master/kiamol/ch11/lab/bulletin-board/src/.gitignore
vendored
Normal file
@@ -0,0 +1,59 @@
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# Runtime data
|
||||
pids
|
||||
*.pid
|
||||
*.seed
|
||||
*.pid.lock
|
||||
|
||||
# Directory for instrumented libs generated by jscoverage/JSCover
|
||||
lib-cov
|
||||
|
||||
# Coverage directory used by tools like istanbul
|
||||
coverage
|
||||
|
||||
# nyc test coverage
|
||||
.nyc_output
|
||||
|
||||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
|
||||
.grunt
|
||||
|
||||
# Bower dependency directory (https://bower.io/)
|
||||
bower_components
|
||||
|
||||
# node-waf configuration
|
||||
.lock-wscript
|
||||
|
||||
# Compiled binary addons (http://nodejs.org/api/addons.html)
|
||||
build/Release
|
||||
|
||||
# Dependency directories
|
||||
node_modules/
|
||||
jspm_packages/
|
||||
|
||||
# Typescript v1 declaration files
|
||||
typings/
|
||||
|
||||
# Optional npm cache directory
|
||||
.npm
|
||||
|
||||
# Optional eslint cache
|
||||
.eslintcache
|
||||
|
||||
# Optional REPL history
|
||||
.node_repl_history
|
||||
|
||||
# Output of 'npm pack'
|
||||
*.tgz
|
||||
|
||||
# Yarn Integrity file
|
||||
.yarn-integrity
|
||||
|
||||
# dotenv environment variables file
|
||||
.env
|
||||
|
||||
@@ -0,0 +1,201 @@
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work.
|
||||
|
||||
To apply the Apache License to your work, attach the following
|
||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||
replaced with your own identifying information. (Don't include
|
||||
the brackets!) The text should be enclosed in the appropriate
|
||||
comment syntax for the file format. We also recommend that a
|
||||
file or class name and description of purpose be included on the
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright [yyyy] [name of copyright owner]
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
@@ -0,0 +1,54 @@
|
||||
new Vue({
|
||||
el: '#events',
|
||||
|
||||
data: {
|
||||
event: { title: '', detail: '', date: '' },
|
||||
events: []
|
||||
},
|
||||
|
||||
ready: function () {
|
||||
this.fetchEvents();
|
||||
},
|
||||
|
||||
methods: {
|
||||
|
||||
fetchEvents: function () {
|
||||
var events = [];
|
||||
this.$http.get('/api/events')
|
||||
.success(function (events) {
|
||||
this.$set('events', events);
|
||||
console.log(events);
|
||||
})
|
||||
.error(function (err) {
|
||||
console.log(err);
|
||||
});
|
||||
},
|
||||
|
||||
addEvent: function () {
|
||||
if (this.event.title.trim()) {
|
||||
this.$http.post('/api/events', this.event)
|
||||
.success(function (res) {
|
||||
this.events.push(this.event);
|
||||
console.log('Event added!');
|
||||
})
|
||||
.error(function (err) {
|
||||
console.log(err);
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
deleteEvent: function (id) {
|
||||
if (confirm('Are you sure you want to delete this event?')) {
|
||||
this.$http.delete('api/events/' + id)
|
||||
.success(function (res) {
|
||||
console.log(res);
|
||||
var index = this.events.find(x => x.id === id)
|
||||
this.events.splice(index, 1);
|
||||
})
|
||||
.error(function (err) {
|
||||
console.log(err);
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
@@ -0,0 +1,9 @@
|
||||
var events = require('./events.js');
|
||||
|
||||
exports.events = function (req, res) {
|
||||
res.json(events);
|
||||
};
|
||||
|
||||
exports.event = function (req, res) {
|
||||
res.json(events[req.param.eventId]);
|
||||
};
|
||||
@@ -0,0 +1,17 @@
|
||||
module.exports = [
|
||||
{
|
||||
id: 1,
|
||||
title: 'DockerCon 2021',
|
||||
date: '2021-05-27'
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: 'KubeCon Europe 2021',
|
||||
date: '2021-08-16'
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: 'KubeCon North America 2021',
|
||||
date: '2021-11-23'
|
||||
}
|
||||
];
|
||||
@@ -0,0 +1,20 @@
|
||||
module.exports = [
|
||||
{
|
||||
id: 1,
|
||||
title: 'DockerCon 2021',
|
||||
detail: 'The container conference for the industry',
|
||||
date: '2021-05-27'
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: 'KubeCon Europe 2021',
|
||||
detail: 'The Cloud Native Computing Foundation’s flagship conference',
|
||||
date: '2021-08-16'
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: 'KubeCon North America 2021',
|
||||
detail: 'The Cloud Native Computing Foundation’s flagship conference',
|
||||
date: '2021-11-23'
|
||||
}
|
||||
];
|
||||
@@ -0,0 +1,17 @@
|
||||
module.exports = [
|
||||
{
|
||||
id: 1,
|
||||
title: 'DockerCon 2021',
|
||||
date: '2021-05-27'
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: 'KubeCon Europe 2021',
|
||||
date: '2021-08-16'
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: 'KubeCon North America 2021',
|
||||
date: '2021-11-23'
|
||||
}
|
||||
];
|
||||
@@ -0,0 +1,3 @@
|
||||
exports.index = function (req, res) {
|
||||
res.render('index');
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,55 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>KIAMOL Bulletin Board</title>
|
||||
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="site.css">
|
||||
<style>
|
||||
.form-control {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.btn-danger {
|
||||
margin-top: 8px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="jumbotron">
|
||||
<h1>KIAMOL Bulletin Board</h1>
|
||||
</div>
|
||||
|
||||
<div class="container" id="events">
|
||||
<div class="col-sm-7">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h3>Add an Event</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<div>
|
||||
<input class="form-control" placeholder="Title" v-model="event.title">
|
||||
<textarea class="form-control" placeholder="Detail" v-model="event.detail"></textarea>
|
||||
<input type="date" class="form-control" placeholder="Date" v-model="event.date">
|
||||
<button class="btn btn-primary" v-on:click="addEvent">Submit</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-5">
|
||||
<div class="list-group">
|
||||
<a href="#" class="list-group-item" v-for="event in events">
|
||||
<h4 class="list-group-item-heading"><i class="glyphicon glyphicon-bullhorn"></i> {{ event.title }}</h4>
|
||||
<h5><i class="glyphicon glyphicon-calendar" v-if="event.date"></i> {{ event.date }}</h5>
|
||||
<p class="list-group-item-text" v-if="event.detail">{{ event.detail }}</p>
|
||||
<button class="btn btn-xs btn-danger" v-on:click="deleteEvent(event.id)">Delete</button>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
<script src="node_modules/vue/dist/vue.min.js"></script>
|
||||
<script src="node_modules/vue-resource/dist/vue-resource.min.js"></script>
|
||||
<script src="app.js"></script>
|
||||
</html>
|
||||
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "vue-event-bulletin",
|
||||
"version": "1.0.0",
|
||||
"description": "Demo application for the scotch.io tutorial",
|
||||
"main": "server.js",
|
||||
"author": "Ryan Chenkie, Jason Lam",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"bootstrap": "^3.3.6",
|
||||
"ejs": "^2.3.4",
|
||||
"express": "^4.13.3",
|
||||
"morgan": "^1.6.1",
|
||||
"vue": "^1.0.10",
|
||||
"vue-resource": "^0.1.17",
|
||||
"body-parser": "^1.14.1",
|
||||
"errorhandler": "^1.4.2",
|
||||
"method-override": "^2.3.5",
|
||||
"morgan": "^1.6.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": "10.6.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
## Vue Events Bulletin Board
|
||||
|
||||
This is the code for the Vue.js [tutorial on Scotch.io](https://scotch.io/tutorials/build-a-single-page-time-tracking-app-with-vue-js-introduction). In the tutorial we build a events bulletin board application and cover the basics of [Vue](http://vuejs.org/).
|
||||
|
||||
## Installation
|
||||
|
||||
1. Run `npm install`.
|
||||
2. Run `node server.js`.
|
||||
3. Visit [http://localhost:8080](http://localhost:8080).
|
||||
|
||||
## RESTful API (contributed by Jason Lam)
|
||||
|
||||
1. **Use Node.js & Express for backend server and router.**
|
||||
2. **RESTful requests towards the server to simulate CRUD on *events* model, instead of local hardcoded ones.**
|
||||
3. Translated into Traditional Chinese.
|
||||
|
||||
## RESTful API written in Go
|
||||
|
||||
If you would like to use a backend written in Go, [thewhitetulip](http://github.com/thewhitetulip) has written on. See [the source code](https://github.com/thewhitetulip/go-vue-events).
|
||||
|
||||
@@ -0,0 +1,38 @@
|
||||
var express = require('express'),
|
||||
bodyParser = require('body-parser'),
|
||||
methodOverride = require('method-override'),
|
||||
errorHandler = require('errorhandler'),
|
||||
morgan = require('morgan'),
|
||||
routes = require('./backend'),
|
||||
api = require('./backend/api');
|
||||
|
||||
var app = module.exports = express();
|
||||
|
||||
app.engine('html', require('ejs').renderFile);
|
||||
app.set('view engine', 'html');
|
||||
app.use(morgan('dev'));
|
||||
app.use(bodyParser.urlencoded({ extended: false }));
|
||||
app.use(bodyParser.json());
|
||||
app.use(methodOverride());
|
||||
app.use(express.static(__dirname + '/'));
|
||||
app.use('/build', express.static('public'));
|
||||
|
||||
var env = process.env.NODE_ENV;
|
||||
if ('development' == env) {
|
||||
app.use(errorHandler({
|
||||
dumpExceptions: true,
|
||||
showStack: true
|
||||
}));
|
||||
}
|
||||
|
||||
if ('production' == app.get('env')) {
|
||||
app.use(errorHandler());
|
||||
}
|
||||
|
||||
app.get('/', routes.index);
|
||||
app.get('/api/events', api.events);
|
||||
app.post('/api/events', api.event);
|
||||
app.delete('/api/events/:eventId', api.event);
|
||||
|
||||
app.listen(process.env.PORT);
|
||||
console.log('Bulletin board running...');
|
||||
@@ -0,0 +1,56 @@
|
||||
/* v2 */
|
||||
@font-face {
|
||||
font-family: 'Geomanist Book';
|
||||
src: url(fonts/geomanist/hinted-Geomanist-Book.eot);
|
||||
src: url(fonts/geomanist/hinted-Geomanist-Book.eot?#iefix) format('embedded-opentype'),url(../fonts/geomanist/hinted-Geomanist-Book.woff2) format('woff2'),url(../fonts/geomanist/hinted-Geomanist-Book.woff) format('woff'),url(../fonts/geomanist/hinted-Geomanist-Book.ttf) format('truetype'),url(../fonts/geomanist/hinted-Geomanist-Book.svg#Geomanist-Book) format('svg');
|
||||
font-weight: 400;
|
||||
font-style: normal
|
||||
}
|
||||
|
||||
body {
|
||||
padding-bottom: 20px;
|
||||
background-color: #aca723;
|
||||
color: #FFF;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
/* Wrapping element */
|
||||
/* Set some basic padding to keep content from hitting the edges */
|
||||
.body-content {
|
||||
padding-left: 15px;
|
||||
padding-right: 15px;
|
||||
}
|
||||
|
||||
/* Set widths on the form inputs since otherwise they're 100% wide */
|
||||
input,
|
||||
select,
|
||||
textarea {
|
||||
max-width: 280px;
|
||||
}
|
||||
|
||||
|
||||
/* Responsive: Portrait tablets and up */
|
||||
@media screen and (min-width: 768px) {
|
||||
.body-content {
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
|
||||
/* v2 */
|
||||
|
||||
.jumbotron {
|
||||
font-family: 'Geomanist Book';
|
||||
background-color: #aca000;
|
||||
padding-top: 5px;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
.jumbotron.h1 {
|
||||
font-size: 40px;
|
||||
}
|
||||
|
||||
h1, h2 {
|
||||
font-family: 'Geomanist Book';
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user