Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# local env files
.env
.env*.local

# vercel
.vercel
51 changes: 9 additions & 42 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,50 +1,17 @@
# The MongoDB Atlas Data API in the Jamstack: The Serverless Dream!
# Lesson 1

Live Demo: [https://social-mongodb-demo.vercel.app/](https://social-mongodb-demo.vercel.app/)
<- Back to [previous lesson](https://github.com/mongodb-developer/social-app-demo/tree/main)

## Introduction

Do you love the Jamstack? Do you love to create all of the boilerplate code required to connect to databases in their Jamstack applications?

This workshop will show you how you can connect to MongoDB Atlas in your Jamstack application with minimal effort and without using any drivers.

## What we'll cover in this workshop

- ~15 minutes of slides explaining Jamstack, serverless, and how the MongoDB Atlas Data API fits into these.
- Hands-on exercises resulting in you building a fully functional, deployed application.

## Prerequisites

In order to successfully complete the tasks in this workshop, you should have:

- Familiarity with JavaScript
- Accounts: MongoDB Atlas, GitHub, Vercel, Auth0. (All Free)
- Node.js installed on your computer (12.2x / 14.x)
- git installed on your computer
- Code Editor (VS Code recommended)

That's it 🙌 *(no prior knowledge of MongoDB is required)*

## Slides
---

-
## Goal

## Hands-on exercises
The goal of this lesson is to get the project set up in your local environment.

This repo is broken up into several branches. Each branch contains a set of exercises and builds upon the previous exercises.
## Task 1: Fork & Clone the workshop repo

Throughout the workshop, you'll be working on the following exercises:
1. [Exercise 1]()
2. [Exercise 2]()
3. [Exercise 3]()
4. [Exercise 4]()
5. [Exercise 5]()
6. [Exercise 6]()
7. [Exercise 7]()
8. [Exercise 8]()
9. [Exercise 9]()
10. [Exercise 10]()
Fork the this repo then clone your fork locally.

---
This repo contains several branches. Each branch is a separate lesson.

Let's get started with the [first exercise]()!
Let's continue on to the [next lesson](https://github.com/mongodb-developer/social-app-demo/tree/2-lesson) ->