You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This example demonstrate how to use [accounts-js](https://github.com/accounts-js/accounts).
4
+
5
+
## Setup example
6
+
7
+
In order to be able to run this example on your machine you first need to do the following steps:
8
+
9
+
- Clone the repository `git clone [email protected]:accounts-js/accounts.git`
10
+
- Install project dependencies: `yarn install`
11
+
- Compile the packages `yarn run compile`
12
+
- Go to the example folder `cd examples/graphql-server-typescript`
13
+
14
+
## Prerequisites
15
+
16
+
You will need a MongoDB server to run this server. If you don't have a MongoDB server running already, and you have Docker & Docker Compose, you can do
17
+
18
+
```bash
19
+
docker-compose up -d
20
+
```
21
+
22
+
to start a new one.
23
+
24
+
## Getting Started
25
+
26
+
Start the app.
27
+
28
+
Visit http://localhost:4000/
29
+
30
+
```bash
31
+
yarn run start
32
+
```
33
+
34
+
-> [Start the client side](../react-graphql-typescript).
0 commit comments