Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/debs-obrien/debbie.codes
My website built in Nuxt and using Nuxt Content. Feel free to clone it and play around with it.
https://github.com/debs-obrien/debbie.codes
nuxt vue vuejs
Last synced: 21 days ago
JSON representation
My website built in Nuxt and using Nuxt Content. Feel free to clone it and play around with it.
- Host: GitHub
- URL: https://github.com/debs-obrien/debbie.codes
- Owner: debs-obrien
- Created: 2019-08-07T18:19:18.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2023-10-27T13:24:32.000Z (about 1 year ago)
- Last Synced: 2024-07-31T19:55:18.932Z (4 months ago)
- Topics: nuxt, vue, vuejs
- Language: Vue
- Homepage: https://debbie.codes
- Size: 9.74 MB
- Stars: 115
- Watchers: 5
- Forks: 40
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Debbie O'Brien
This is my website which I built in Nuxt 3. I use it as my playground for trying out new stuff and having fun. Feel free to have a look around and copy whatever you like as the code is open source so if it helps you then great. All content is written in markdown using Nuxt Content v2 and makes it very easy to add new posts, videos etc. Site is a static site meaning it can be hosted for free on any hosting service such as Netlify.
After cloning it make sure you run yarn or npm install to install everything and then start the dev servers.
## Setup
Make sure to install the dependencies:
```bash
# yarn
yarn install# npm
npm install# pnpm
pnpm install --shamefully-hoist
```## Development Server
Start the development server on http://localhost:3000
```bash
npm run dev
```## Production
Build the application for production:
```bash
npm run build
```Locally preview production build:
```bash
npm run preview
```