An open API service indexing awesome lists of open source software.

https://github.com/kkhamwiset/resonance

Software Engineering's Project
https://github.com/kkhamwiset/resonance

django docker nuxtjs python shop tailwindcss vue3 web

Last synced: 6 months ago
JSON representation

Software Engineering's Project

Awesome Lists containing this project

README

          

# SoundShop
Software Engineering's Project
Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
This is the [Folder Structure](https://vueschool.io/articles/vuejs-tutorials/understanding-the-directory-structure-in-nuxt-3/).
We will use "snake_case" variables
## Setup

Make sure to install dependencies:

```bash
# npm
npm install

# pnpm
pnpm install

# yarn
yarn install

# bun
bun install
```

## Front-End Development

Start the development server on `http://localhost:3000`:

```bash
# npm
npm run dev

# pnpm
pnpm dev

# yarn
yarn dev

# bun
bun run dev
```
## Back-End Developement
After Clone then, start env module in project folder:
```bash
python -m venv
```
then after that activate env using
```bash
.//Scripts/activate
```
then terminal run :
```bash
pip install -r backend/requirements.txt
```
## Production

Build the application for production:

```bash
# npm
npm run build

# pnpm
pnpm build

# yarn
yarn build

# bun
bun run build
```

Locally preview production build:

```bash
# npm
npm run preview

# pnpm
pnpm preview

# yarn
yarn preview

# bun
bun run preview
```