https://github.com/sst/tutorial-links-app
Source for the links app that we build in the SST tutorial.
https://github.com/sst/tutorial-links-app
sst tutorial
Last synced: 3 months ago
JSON representation
Source for the links app that we build in the SST tutorial.
- Host: GitHub
- URL: https://github.com/sst/tutorial-links-app
- Owner: sst
- License: mit
- Created: 2022-09-06T17:57:08.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-04-20T19:13:36.000Z (over 2 years ago)
- Last Synced: 2025-06-08T01:11:23.458Z (4 months ago)
- Topics: sst, tutorial
- Language: TypeScript
- Homepage: https://docs.sst.dev/learn
- Size: 3.19 MB
- Stars: 10
- Watchers: 4
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Tutorial Links App
Source for the _Links_ app that we build in the SST tutorial — [docs.sst.dev/learn](https://docs.sst.dev/learn)
[](https://docs.sst.dev/learn)
---
It's a simple Reddit clone built using:
- [SST](https://sst.dev)
- PostgreSQL
- GraphQL
- ReactWritten in TypeScript and deployed to AWS.
## Usage
Clone this repo.
```bash
$ git clone https://github.com/serverless-stack/tutorial-links-app
```Install dependencies.
```bash
$ npm install
```### Developing Locally
Start the [Live Lambda Dev Environment](https://docs.sst.dev/live-lambda-development).
```bash
$ npx sst start
```Start the React local dev environment from the `web/` dir.
```bash
$ cd web
$ npm run dev
```### Deploying to Prod
Run this in the project root to deploy it to prod.
```bash
$ npx sst deploy --stage prod
```---
Join the SST community over on [Discord](https://discord.gg/sst) and follow us on [Twitter](https://twitter.com/SST_dev).