Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/AustinGil/npm
Repo to accompany the series "Build A Pet Management System With Remix, Prisma, and Postgres" https://www.youtube.com/watch?v=wqyHGQlZcws&list=PLTnRtjQN5ieYu9SdwLvzKYFVtfqySY7FT
https://github.com/AustinGil/npm
crud html javascript postgresql prisma react sql tutorial
Last synced: 3 months ago
JSON representation
Repo to accompany the series "Build A Pet Management System With Remix, Prisma, and Postgres" https://www.youtube.com/watch?v=wqyHGQlZcws&list=PLTnRtjQN5ieYu9SdwLvzKYFVtfqySY7FT
- Host: GitHub
- URL: https://github.com/AustinGil/npm
- Owner: AustinGil
- Created: 2022-09-08T16:17:05.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-11T15:47:29.000Z (over 1 year ago)
- Last Synced: 2024-05-12T02:34:51.054Z (6 months ago)
- Topics: crud, html, javascript, postgresql, prisma, react, sql, tutorial
- Language: JavaScript
- Homepage:
- Size: 366 KB
- Stars: 8
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-prisma - Neighborhood Pet Manager
README
# Neighborhood Pet Manager
Let's build a full-stack web application for managing all the pets in your neighborhood. This is the repo to follow along with [a tutorial series](https://www.youtube.com/watch?v=wqyHGQlZcws) where we'll learn how to combine these great tools:
- [Remix](https://remix.run/docs)
- [Prisma](https://www.prisma.io/docs/)
- [Postgres](https://www.postgresql.org/)You can catch the series on the Linode YouTube channel here: https://www.youtube.com/watch?v=wqyHGQlZcws
## Prerequisites
This is not a web dev 101 course. You should already be familiar with Git, Node, HTML, JavaScript, and React. You also will want to have these installed on your machine:
- [Git](https://git-scm.com/)
- [Node](https://nodejs.org/en/)
- A code editor like [VS Code](https://code.visualstudio.com/)
- A database visualizer like [DBeaver](https://dbeaver.io/) (Optional)## Development
From your terminal:
```sh
npm run dev
```This starts your app in development mode, rebuilding assets on file changes.
You'll also need a Postgres database running. If you're comfortable with docker, you can get a local instance running locally with this command:
```sh
docker run -d --name=postgres -p 5432:5432 -e POSTGRES_PASSWORD=password postgres
```## Got Issues?
Each chapter corresponds with a specific [tag](https://github.com/AustinGil/npm/tags). I've named them with a very helpful system:
1. Woof!
2. Meow!
3. Chirp!To reset your project to a specific tag, you can use a Git reset:
```sh
git reset --hard tagname
```Still having issues? Feel free to [reach out to me on Twitter](https://twitter.com/heyAustinGil)