https://github.com/boussadjra/movies-app
Movie app
https://github.com/boussadjra/movies-app
Last synced: 4 months ago
JSON representation
Movie app
- Host: GitHub
- URL: https://github.com/boussadjra/movies-app
- Owner: boussadjra
- Created: 2023-12-17T19:04:44.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-17T19:05:23.000Z (over 1 year ago)
- Last Synced: 2025-02-25T12:03:02.305Z (4 months ago)
- Language: Vue
- Size: 325 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Movie Management App
This is a Vue.js application that allows users to manage a list of movies.
## Project Structure
- `src/`: Contains the source code of the application.
- `App.vue`: The main Vue component.
- `assets/`: Contains static files like CSS and fonts.
- `components/`: Contains Vue components used in the application.
- `composables/`: Contains Vue composables.
- `main.ts`: The entry point of the application.
- `router/`: Contains Vue Router configuration.
- `stores/`: Contains Pinia stores.
- `types/`: Contains TypeScript type definitions.
- `views/`: Contains Vue components that represent pages in the application.
- `public/`: Contains public assets that will be served directly by the server.
- `vite.config.ts`: Configuration file for Vite.
- `tsconfig.json`: Configuration file for TypeScript.
- `package.json`: Lists the package dependencies for the project.## Getting Started
1. Install dependencies:
```sh
npm install
```2. Run the application:
```sh
npm run dev
```3. Build the application:
```sh
npm run build
```