https://github.com/frenchbread/linco
Simple URL shortener service
https://github.com/frenchbread/linco
Last synced: about 1 month ago
JSON representation
Simple URL shortener service
- Host: GitHub
- URL: https://github.com/frenchbread/linco
- Owner: frenchbread
- License: mit
- Created: 2022-06-28T09:11:51.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-26T10:52:40.000Z (almost 3 years ago)
- Last Synced: 2025-02-11T19:37:03.428Z (3 months ago)
- Language: TypeScript
- Size: 164 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Linco
===> Simple URL shortener service
### Setup
##### clone repo
```
❯ git clone https://github.com/frenchbread/linco
```### Backend
##### navigate to `linco-backend` dir
```
❯ cd ./linco-backend
```##### add `.env` file or rename `.env-template`
```
❯ mv .env-template .env
```##### start docker container
```
❯ docker-compose up
```This will start mongodb and backend app on ports `27017` and `8080`.
### Frontend
In second terminal tab, navigate to `linco-frontend` folder.
```
❯ cd ./linco-frontent
```##### add `.env` file or rename `.env-template`
```
❯ mv .env-template .env
```##### install dependencies
```
❯ yarn
```##### start frontend app
```
❯ yarn run serve
```This will start frontend app on port `3030`.