This repository has been archived on 2024-07-10. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/README.md

58 lines
2.7 KiB
Markdown
Raw Normal View History

2023-06-19 05:39:01 +00:00
2023-08-24 10:00:00 +00:00
<div align="center">
<img src="icons/LittleLines.svg" width="192" height="192" alt="Logo">
<h1>Little Lines</h1>
2023-07-19 20:43:47 +00:00
2023-08-24 10:00:00 +00:00
<a href="https://www.gnu.org/licenses/agpl-3.0.en.html">
<img alt="License: AGPLv3" src="https://shields.io/badge/License-AGPLv3-blueviolet.svg">
</a>
2024-03-26 22:12:03 +00:00
<img alt="Service Status" src="https://status.techtransthai.org/api/badge/7/status">
2023-11-12 10:20:24 +00:00
</a>
2023-08-24 10:00:00 +00:00
2023-07-20 07:28:02 +00:00
2023-08-24 10:00:00 +00:00
<h3>ระบบนำทางสำหรับล้อขนาดเล็ก</h3>
2023-07-20 07:28:02 +00:00
2023-08-24 10:00:00 +00:00
<a href="https://little-lines.techtransthai.org">เข้าใช้งานเว็บแอป</a>
&nbsp;&nbsp;
2024-03-26 22:12:03 +00:00
<a href="https://codeberg.org/TechTransThai/little-lines/wiki">เอกสาร</a>
2023-07-20 07:28:02 +00:00
2023-08-24 10:00:00 +00:00
<h5>ร่วมพูดคุยกับเรา:</h5>
2024-03-26 22:12:03 +00:00
<a href="https://discord.gg/3tRdRE3tGv">
<img alt="Discord" src="https://img.shields.io/discord/1222303235814199306?label=Discord&color=blueviolet">
2023-08-24 10:00:00 +00:00
</a>
</div>
2023-07-20 07:28:02 +00:00
2023-08-24 10:00:00 +00:00
## Little Lines คืออะไร
2023-07-20 07:28:02 +00:00
2023-08-24 10:00:00 +00:00
Littles Lines คือระบบนำทางสำหรับล้อขนาดเล็ก ไม่ว่าจะเป็นวีลแชร์ กระเป๋าเดินทาง รถเข็นเด็ก นอกจากนี้ยังสามารถใช้นำทางสำหรับการเดินเท้าไปยังที่ต่าง ๆ ได้อีกด้วย โดยเว็บแอปที่ เขียนด้วย Vue นี้จะนำข้อมูลจาก OpenStreetMap มาใช้ในการคำนวณเส้นทางและแสดงผลให้ผู้ใช้ต่อไป
2023-07-20 07:28:02 +00:00
2023-08-24 10:00:00 +00:00
## การมีส่วนร่วมกับโปรเจกต์
2023-07-20 07:28:02 +00:00
2023-08-24 10:00:00 +00:00
คุณสามารถสนับสนุนโปรเจกต์นี้ได้ผ่านหลากหลายช่องทาง ไม่ว่าจะเป็น
- นำเสนอไอเดีย หรือส่ง Feedback ใน Discord ของเรา
- เพิ่มข้อมูลที่จำเป็นสำหรับการนำทางลงในแพลตฟอร์ม OpenStreetMap
- ร่วมพัฒนาตัวเว็บแอป Little Lines เอง
2023-07-20 07:28:02 +00:00
2023-08-24 10:00:00 +00:00
## การติดตั้ง
2023-07-20 07:28:02 +00:00
2023-08-24 10:00:00 +00:00
สำหรับการพัฒนาด้วย NPM
2023-07-20 07:28:02 +00:00
2023-08-24 10:00:00 +00:00
```
2024-03-26 22:12:03 +00:00
$ git clone https://codeberg.org/TechTransThai/little-lines.git
$ cd little-lines
2023-08-24 10:00:00 +00:00
$ npm i
$ npm run dev
```
2023-07-20 07:28:02 +00:00
2023-08-24 10:00:00 +00:00
สำหรับ Production ด้วย Podman/Docker
2023-07-20 07:28:02 +00:00
2023-08-24 10:00:00 +00:00
```
2024-03-26 22:12:03 +00:00
$ git clone https://codeberg.org/TechTransThai/little-lines.git
$ cd little-lines
2023-08-24 10:00:00 +00:00
$ podman build -t littlelines:20230720 .
$ podman run --name littlelines -p 8080:80 -d littlelines:20230720
2024-03-26 22:12:03 +00:00
```