Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ghosty2004/tasks-todo-app
Simple TODO app to manage your tasks with CRUD
https://github.com/ghosty2004/tasks-todo-app
Last synced: 3 days ago
JSON representation
Simple TODO app to manage your tasks with CRUD
- Host: GitHub
- URL: https://github.com/ghosty2004/tasks-todo-app
- Owner: ghosty2004
- Created: 2024-05-30T08:43:56.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-05-30T13:41:17.000Z (9 months ago)
- Last Synced: 2025-02-05T07:56:28.832Z (10 days ago)
- Language: Vue
- Size: 69.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple tasks todo app
## Setting up (with docker)
1. make sure you have docker installed
2. create a copy of `.env.example` to `.env`
3. start the apps with `docker compose up`
4. navigate to `http://localhost` or `http://127.0.0.1`## Setting up (without docker)
1. make sure you have nodejs installed
2. create a copy of `apps/client/.env.example` to `apps/client/.env` and fill it
3. go to `apps/client` and type `npm install && npm run dev`
4. create a copy of `apps/server/.env.example` to `apps/server/.env` and fill it
5. go to `apps/server` and type `npm install && npm run build && npm run start`
6. navigate to `http://localhost:5173` or `http://127.0.0.1:5173` (default vite dev server port)