You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+25-13
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,16 @@
1
-
# Nuxt, Vuetify, & Netlify CMS Starter Kit
1
+
# Nuxt, Vuetify, & Netlify CMS Starter
2
2
3
-
A simple repo to add Vueity and blog functionality to [Nuxt & Netlify CMS Starter](https://github.com/renestalder/nuxt-netlify-cms-starter-template)
3
+
Built on top of [Nuxt Netlify CMS Starter](https://github.com/xdesro/nuxt-netlify-cms-starter)
4
4
5
-
A lot of the starter repos for **Nuxt x Netlify CMS** use a module like `nuxtent` or `nuxtdown` to manage flat file content. This project is meant to be a solution for those who don't mind doing a little more configuration to not have to rely on these dependencies.
5
+
## How to use
6
+
7
+
## Getting Started
8
+
9
+
The quickest way to get started is with Netlify's hyper-convenient **one-click Deploy To Netlify**, which will automatically create an instance of this project on your GitHub account and deploy it instantly to Netlify.
10
+
11
+
[](https://app.netlify.com/start/deploy?repository=https://github.com/jbratcher/nuxt-netlify-cms-starter-kit)
12
+
13
+
Otherwise, you can follow these steps!
6
14
7
15
1. Clone the repository locally and cd into the directory.
8
16
@@ -15,28 +23,28 @@ cd nuxt-netlify-cms-starter
15
23
2. Install dependencies.
16
24
17
25
```bash
18
-
npm install
26
+
yarn install
19
27
```
20
28
21
29
3. Run the project for local dev. This will start a hot-reloading server at `localhost:3000`.
22
30
23
31
```bash
24
-
npm run dev
32
+
yarn dev
25
33
```
26
34
27
35
4. Build the app for server-side rendered deployment. See more about **Universal SSR** in the [Nuxt.js docs](https://nuxtjs.org/guide#server-rendered-universal-ssr-).
28
36
29
37
```bash
30
-
npm run build
38
+
yarn build
31
39
32
40
# And to serve that deployment...
33
-
npm run start
41
+
yarn start
34
42
```
35
43
36
-
5.Generate a fully pre-rendered static site. See more [in the docs](https://nuxtjs.org/guide#static-generated-pre-rendering-).
44
+
5. Generate a fully pre-rendered static site. See more [in the docs](https://nuxtjs.org/guide#static-generated-pre-rendering-).
37
45
38
46
```bash
39
-
npm run generate
47
+
yarn generate
40
48
```
41
49
42
50
> This project was bootstrapped with `create-nuxt-app`. There are more detailed explanations of how everything works in the [Nuxt.js docs](https://nuxtjs.org).
@@ -45,7 +53,7 @@ npm run generate
45
53
46
54
This project comes with Netlify CMS ready to rumble, and a basic blog configuration. To use Netlify CMS:
47
55
48
-
### 🔏 Authenticating with Netlify Identity
56
+
### Authenticating with Netlify Identity
49
57
50
58
1. Deploy to Netlify at least once.
51
59
2. Go to **Settings > Identity**, and select **Enable Identity service**.
@@ -61,8 +69,12 @@ This project comes with Netlify CMS ready to rumble, and a basic blog configurat
61
69
62
70
#### To change netlify deploy url, run localStorage.removeItem("netlifySiteURL") in the browser console.
63
71
72
+
<<<<<<< HEAD
64
73
### Use Netlify CMS Dashboard
74
+
=======
75
+
### Netlify CMS Dashboard
76
+
>>>>>>> master
65
77
66
-
1. In your browser, naviage to `localhost:3000/admin`.
67
-
2. Login via your chosen method.
68
-
3.You will be redirectd to the dashboard where you can createand manage posts
78
+
1. In your browser, navigate to `localhost:3000/admin`.
79
+
2. Login
80
+
3.From the dashboard, you can create, edit, and delete resources and resource types.
0 commit comments