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
- Host: GitHub
- URL: https://github.com/kkhamwiset/resonance
- Owner: KKhamwiset
- Created: 2025-01-05T14:42:37.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-04T20:11:03.000Z (over 1 year ago)
- Last Synced: 2025-02-04T21:20:58.705Z (over 1 year ago)
- Topics: django, docker, nuxtjs, python, shop, tailwindcss, vue3, web
- Language: Vue
- Homepage:
- Size: 418 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```