-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
896b489
commit c1a57b5
Showing
1 changed file
with
25 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,5 +1,28 @@ | ||
# Meet the countries - Backend | ||
|
||
## Get started | ||
## Getting Started on the app | ||
|
||
... | ||
First, open docker and run compose: | ||
|
||
```bash | ||
docker compose up -d | ||
``` | ||
|
||
Second, make sure to have the dependencies installed and run the dev server: | ||
|
||
```bash | ||
yarn install | ||
yarn dev | ||
``` | ||
|
||
Open [http://localhost:8000/graphql](http://localhost:3000) with your browser to see the result. | ||
|
||
In order to run lint, do: | ||
```bash | ||
yarn lint | ||
``` | ||
|
||
## Requirements | ||
1. Node 18+ | ||
2. Yarn | ||
3. Docker |