https://github.com/notties/vue-job-project
Learning vue concept & implement CICD using Actions, AWS EC2, docker
https://github.com/notties/vue-job-project
docker-compose dockerfile json-server nginx nginx-docker tailwind-css vue
Last synced: 4 months ago
JSON representation
Learning vue concept & implement CICD using Actions, AWS EC2, docker
- Host: GitHub
- URL: https://github.com/notties/vue-job-project
- Owner: Notties
- Created: 2024-11-10T17:35:10.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-11-13T18:42:03.000Z (8 months ago)
- Last Synced: 2025-02-05T07:23:49.671Z (5 months ago)
- Topics: docker-compose, dockerfile, json-server, nginx, nginx-docker, tailwind-css, vue
- Language: Vue
- Homepage: https://notties.github.io/Vue-job-project/
- Size: 458 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vue Jobs Project
Youtube tutorial -> [YouTube crash course](https://www.youtube.com/watch?v=VeNfHj6MhgA).
## Usage
This project uses JSON-Server for a mock backend.
### Create .env
```env
VITE_APP_API_URL=http://localhost:8000
```### Run with Docker Compose (Optional)
```bash
docker compose up --build
```### Install Dependencies
```bash
npm install
```### Run JSON Server
The server will run on http://localhost:8000
```bash
npm run server
```### Run Vite Frontend
Vue will run on http://localhost:3000
```bash
npm run dev
```### Build for Production
```bash
npm run build
```### Preview Production Build
```bash
npm run preview
```