https://github.com/waylaidwanderer/midnightsmaker
Create your own Midnights-style album cover
https://github.com/waylaidwanderer/midnightsmaker
Last synced: 4 months ago
JSON representation
Create your own Midnights-style album cover
- Host: GitHub
- URL: https://github.com/waylaidwanderer/midnightsmaker
- Owner: waylaidwanderer
- License: gpl-3.0
- Created: 2022-09-08T11:34:05.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-08T22:48:25.000Z (almost 3 years ago)
- Last Synced: 2025-04-08T13:50:28.706Z (8 months ago)
- Language: Vue
- Homepage: https://midnightsmaker.com
- Size: 689 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Midnights Maker
**Author's note:**
I would not call this the best example of my work. I wasn't expecting to open-source it, and took some ugly shortcuts at times. For example, some sections could be de-duplicated or simplified, or constants could be moved into a variable and reused instead. If I was doing it properly, I would probably also have multiple components instead of doing everything in `app.vue`.
Regardless, I hope you find some of this useful, or interesting. Enjoy!
Look at the [nuxt 3 documentation](https://v3.nuxtjs.org) to learn more.
## 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
```
Checkout the [deployment documentation](https://v3.nuxtjs.org/guide/deploy/presets) for more information.