https://github.com/kiralt/cocktails-guru
Cocktails recipes
https://github.com/kiralt/cocktails-guru
cocktail-db cocktail-recipes cocktails nextjs recipes
Last synced: 8 months ago
JSON representation
Cocktails recipes
- Host: GitHub
- URL: https://github.com/kiralt/cocktails-guru
- Owner: KiraLT
- License: mit
- Created: 2022-07-18T16:08:58.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-09T18:19:56.000Z (almost 2 years ago)
- Last Synced: 2024-04-23T14:04:48.832Z (over 1 year ago)
- Topics: cocktail-db, cocktail-recipes, cocktails, nextjs, recipes
- Language: TypeScript
- Homepage: https://cocktailsguru.me/
- Size: 66.5 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# Cocktails Guru
This repository houses the code for the Cocktails Guru website, a project dedicated to cocktail lovers around the globe. Here you'll find all sorts of cocktail recipes to try and enjoy.
## Requesting Recipes
If you'd like to request a new cocktail recipe to be added to the website, please use the following link to create a new issue:
[Request a Recipe](https://github.com/KiraLT/cocktails-guru/issues/new?assignees=&labels=&projects=&template=reciple-request.md&title=)
Make sure to fill out the issue template with as much detail as possible.
s## Pre-requisites
This project uses npm (node package manager) for dependency management and Node.js for the runtime environment. Please ensure that you have these installed on your system before proceeding:
- Node.js (version 22 or newer)
## Getting Started
### Install dependencies
Install the required dependencies:
```bash
npm install
```### Start the development server
To start the development server, use the following command:
```bash
npm run dev
```Your local copy of the project should now be running at `http://localhost:3000`.
### Building for production
When you're ready to build the project for production, use the following command:
```bash
npm run build
```This will create a production-ready version of the project in the `out/` directory.