Skip to content

Commit 71c58d1

Browse files
committed
feat: transfer backend from nomnom webapp
1 parent de61e45 commit 71c58d1

8 files changed

+3489
-1
lines changed

.env.sample

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
NEO4J_URI=
2+
NEO4J_USER=
3+
NEO4J_PASSWORD=
4+
COGNITO_USER_POOL_JWKS_ENDPOINT_URL=
5+
PORT=

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
dist
2+
node_modules
3+
bun.lockb
4+
.env

README.md

+33-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,33 @@
1-
# nomnom-graphql-server
1+
# nomnom-graphql-server
2+
3+
This is the backend graphql server for nomnom web app. Uses [neo4j-graphql](https://neo4j.com/docs/graphql/current/) library to provide automatic generation of Queries and Mutations for CRUD interactions.
4+
5+
# Usage
6+
7+
## Set environment variables
8+
9+
Create a `.env` file referencing the `.env.sample` file provided.
10+
11+
## Install dependencies
12+
13+
```bash
14+
npm install
15+
```
16+
17+
## Development
18+
19+
```bash
20+
npm run dev
21+
```
22+
23+
## Build
24+
25+
```bash
26+
npm run build
27+
```
28+
29+
## Build and Start
30+
31+
```
32+
npm run start
33+
```

0 commit comments

Comments
 (0)