This a small fullstack application I have built in my free time. The server is completely written in Typescript, whereas in the client, Typescript is used for the benefit of using the graphql code generator.
You first need to start a redis server locally and also create a postgres database named travel_log
.
Also rename the .env.example
file in the server folder to just .env
.
You can run both client and server using the following command:
yarn # install dependencies
yarn dev # start for development
You can access the frontend on localhost:8080
and the backend on localhost:8000
- Containerize the application