Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hynnot/PERN-stack-boilerplate
https://github.com/hynnot/PERN-stack-boilerplate
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/hynnot/PERN-stack-boilerplate
- Owner: hynnot
- Created: 2022-11-17T14:07:48.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-17T14:20:18.000Z (almost 2 years ago)
- Last Synced: 2024-08-02T15:47:05.581Z (3 months ago)
- Language: TypeScript
- Size: 307 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PERN Stack Boilerplate
Boilerplate for a React/Express/PostgreSQL app.## Quick Start
### Development - Backend
The backend can be launched by running in ``/``:
```bash
$ docker-compose up
```
This runs the backend server on http://localhost:5000.### Development - Frontend
The frontend can be launched by running in ``/frontend``:
```bash
$ npm run start
```
This runs the frontend server on http://localhost:3000. All requests will be proxied to the backend.### Deployment
Both the frontend and backend can be deployed by running in ``/``:
```bash
$ docker-compose -f docker-compose-prod.yml up
```
This runs the deployed website on http://localhost:8000.*Boilerplate inspired in https://github.com/V-Wong/pern-stack-template*