Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kclejeune/dsc-crash-course
https://github.com/kclejeune/dsc-crash-course
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/kclejeune/dsc-crash-course
- Owner: kclejeune
- Created: 2020-02-05T22:25:22.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T07:17:42.000Z (almost 2 years ago)
- Last Synced: 2024-10-28T09:08:56.918Z (about 2 months ago)
- Language: JavaScript
- Size: 2.61 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vue.js: A Basic Todo List
## Prerequisites
You'll need Node.js installed. You can get it ![here](https://nodejs.org/en/), or with your favorite package manager. Alternatively, if you're on macOS or Linux, we recommend ![Node Version Manager](https://github.com/nvm-sh/nvm). Follow the instructions in their repository and run ```nvm install --lts```.
## Running the Project
### Backend
The project consists of a Node.js/Express.js/Sqlite3 backend, found in `/server`. To start the backend, run:
```bash
cd server
npm install
node index
```This will most likely start the server on ![localhost:3000](localhost:3000).
### Frontend
The Vue UI can be found in `/frontend`. To start the development server, run:
```bash
cd frontend
npm install
npm run serve
```This will most likely start the server on ![localhost:8080](localhost:8080). Navigate to this in your browser and the app will load.