-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
59 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,59 @@ | ||
# recipe-app-react-prisma | ||
Building a recipe app using prisma and react | ||
# Recipe App | ||
|
||
A recipe app built using react and prisma app | ||
|
||
## Installation and Set Up | ||
|
||
Clone the repo from GitHub: | ||
|
||
``` | ||
git clone https://github.com/brayoh/recipe-app-react-prisma.git | ||
``` | ||
|
||
Fetch from the develop branch: | ||
|
||
``` | ||
git fetch origin develop | ||
``` | ||
|
||
Install Prisma cli: | ||
|
||
``` | ||
npm install -g prisma | ||
``` | ||
|
||
Navigate to the root folder: | ||
|
||
``` | ||
cd recipe-app-react-prisma | ||
``` | ||
|
||
Install the required packages: | ||
|
||
``` | ||
npm install | ||
``` | ||
|
||
Navigate to the client folder: | ||
|
||
``` | ||
cd client | ||
``` | ||
|
||
Install the required packages: | ||
|
||
``` | ||
npm install | ||
``` | ||
|
||
|
||
|
||
## Launching the App | ||
|
||
Start your local prisma server by running `docker-compose up -d` then navigate to the client folder and run `npm start` | ||
|
||
## Built With... | ||
|
||
- [Prisma](https://prisma.io/) | ||
- [React](https://reactjs.org/) | ||
- [Ant Design](https://ant.design/) |