-
Notifications
You must be signed in to change notification settings - Fork 0
Loco app documentation
Matthjass13 edited this page Mar 15, 2026
·
5 revisions
The Loco folder contains a web app created with the loco framework.
It is a CRUD app to manage differents posts.
It uses SQLLite for the data management.
-
Clone the project if not already done
-
Go to the Loco/locoapp folder and open terminal B (for backend)
-
Go to the Loco/locoapp/frontend folder and open terminal F (for frontend)
-
Run those commands :
- cargo install loco (terminal B)
- cargo install sea-orm-cli (terminal B)
- npm install (terminal F)
- npm run build (terminal F)
- cargo loco start (terminal B) (launch the backend)
- npm run dev (terminal F) (launch the frontend)
- Access the app with http://localhost:3000/
- You can see, add, edit, delete articles.
Not much for now