https://github.com/michaelsynan/physicalmind-institute-app
https://github.com/michaelsynan/physicalmind-institute-app
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/michaelsynan/physicalmind-institute-app
- Owner: michaelsynan
- Created: 2024-02-11T22:36:04.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-26T17:57:56.000Z (4 months ago)
- Last Synced: 2025-03-15T00:29:46.227Z (3 months ago)
- Language: Vue
- Size: 83 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## PhysicalMind Studio App
### To-Do
- [x] Parasetter Pilates video
- [x] Headfloater workshop
- [ ] Cadillac video
- [ ] Body mind animated video
- [x] Bungee wrap library
- [x] Ballet enrichment program## Setup
Make sure to install the dependencies:
```bash
# npm
npm install# pnpm
pnpm install# yarn
yarn install# bun
bun install
```## Development Server
Start the development server on `http://localhost:3000`:
```bash
# npm
npm run dev# pnpm
pnpm run dev# yarn
yarn dev# bun
bun run dev
```## Production
Build the application for production:
```bash
# npm
npm run build# pnpm
pnpm run build# yarn
yarn build# bun
bun run build
```Locally preview production build:
```bash
# npm
npm run preview# pnpm
pnpm run preview# yarn
yarn preview# bun
bun run preview
```Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.