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

https://github.com/boussadjra/movies-app

Movie app
https://github.com/boussadjra/movies-app

Last synced: 4 months ago
JSON representation

Movie app

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
```