Skip to content

Staging #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Nov 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .env
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VUE_APP_CONTENTSTACK_API_KEY = stack_api_key
VUE_APP_CONTENTSTACK_DELIVERY_TOKEN = delivery_token
VUE_APP_CONTENTSTACK_ENVIRONMENT = publishing_environment
VUE_APP_CONTENTSTACK_API_KEY =your_stack_api_key
VUE_APP_CONTENTSTACK_DELIVERY_TOKEN = your_stack_delivery_token
VUE_APP_CONTENTSTACK_ENVIRONMENT = delivery_token_env
# optional EU region (default region is NA/US) when its kept empty
VUE_APP_CONTENTSTACK_REGION =
# VUE_APP_CONTENTSTACK_REGION =
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.DS_Store
node_modules
package-lock.json
/dist


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Contentstack](https://camo.githubusercontent.com/d24f513afa94a4a762533d54a0f590300dbd0413/68747470733a2f2f7777772e636f6e74656e74737461636b2e636f6d2f646f63732f7374617469632f696d616765732f636f6e74656e74737461636b2e706e67)](https://www.contentstack.com/)
[![Contentstack Logo](/public/contentstack.png)](https://www.contentstack.com/)

# Create a marketing website using VueJS

Expand Down
13,107 changes: 13,107 additions & 0 deletions package-lock.json

Large diffs are not rendered by default.

8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "contentstack-vuejs-starter-app",
"version": "1.0.0",
"version": "1.1.0",
"description": "A simple starter app build using VueJS and Contentstack",
"author": "Contentstack",
"license": "MIT",
Expand All @@ -11,13 +11,17 @@
"lint": "vue-cli-service lint"
},
"dependencies": {
"@alenaksu/json-viewer": "^0.3.4",
"contentstack": "^3.12.2",
"core-js": "^3.6.5",
"moment": "^2.29.1",
"register-service-worker": "^1.7.1",
"vue": "^3.0.0",
"vue-json-pretty": "^1.8.1",
"vue-json-tree-viewer": "^1.0.2",
"vue-meta": "^2.4.0",
"vue-router": "^4.0.5"
"vue-router": "^4.0.5",
"vuex": "^4.0.0-alpha.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.0",
Expand Down
Binary file added public/contentstack.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
51 changes: 33 additions & 18 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -1,20 +1,35 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta name="description" content="This is a sample starter app build using VueJS and Contentstack">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<title><%= htmlWebpackPlugin.options.title %></title>
<link rel="preconnect" href="https://fonts.gstatic.com"></link>
<link href="https://fonts.googleapis.com/css?family=Inter&amp;display=swap" rel="stylesheet"/>
</head>
<body>
<noscript>
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>

<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta name="description" content="This is a sample starter app build using VueJS and Contentstack">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<title>
<%= htmlWebpackPlugin.options.title %>
</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
</link>
<link href="https://fonts.googleapis.com/css?family=Inter&amp;display=swap" rel="stylesheet" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css"
integrity="sha512-YWzhKL2whUzgiheMoBFwW8CKV4qpHQAEuvilg9FAn5VJUDwKZZxkJNuGM4XkWuk94WCrrwslk8yWNGmY1EduTA=="
crossOrigin="anonymous" referrerpolicy="no-referrer" />
</head>

<body>
<noscript>
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>

</html>
Binary file added src/assets/Devtools.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading