Table of contents
Open Table of contents
Todo React Native App
React Native todo application with backend written in Go.
Application is written in TypeScript and uses Expo for development and deployment.
On the backend Fiber is used as a web framework and PostgreSQL as a database.
Source code can be found on GitHub.
Screenshots
Running Locally
Server
- Navigate to server folder:
cd server
- Run PostgreSQL:
make run-postgres
- Start the server:
cd cmd && go run .
- API will be available at http://localhost:3000/
Client
- Navigate to client folder:
cd app
- Install dependencies:
npm install
- Start expo:
npm run start