https://github.com/codemaker46/linkzy
https://github.com/codemaker46/linkzy
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/codemaker46/linkzy
- Owner: CodeMaker46
- Created: 2025-10-07T20:38:33.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-10-07T21:39:49.000Z (4 months ago)
- Last Synced: 2025-10-07T22:30:02.278Z (4 months ago)
- Language: TypeScript
- Size: 91.8 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# linkzy
## Development Setup
### Client (React)
1. Open a terminal and navigate to the `client` directory:
```sh
cd client
```
2. Install dependencies (if not already):
```sh
npm install
```
3. Start the development server:
```sh
npm run dev
```
The client will run on [http://localhost:5173](http://localhost:5173) by default.
### Server (Express)
1. Open a separate terminal and navigate to the `server` directory:
```sh
cd server
```
2. Install dependencies (if not already):
```sh
npm install
```
3. Start the development server:
```sh
npm run dev
```
The server will run on [http://localhost:5000](http://localhost:5000) by default.
---
- The client and server run independently in development.
- Update API URLs in the client to point to the Express server (e.g., `http://localhost:5000`).