Visit below for our SAAS template https://github.com/Saas-Starter-Kit/Saas-Kit-prisma
A fullstack React/express blog using React hooks
This Project was bootstrapped with create-react-app
download or git clone the project files.
The "Client" directory contains the React code. The "Server" directory contains the code for the node.js express server. This project requries a PSQL database to run. This project also requires setting up an app on auth0.
For intructions on installing PSQL visit the offical PSQL website:
https://www.postgresql.org/
cd Client
cd Server
npm install
npm install
npm start
(runs react at localhost:3000)
npm run devstart
(devstart runs nodemon at localhost:5000)
- Open the PSQL shell and login to PSQL
- Create a new PSQL database if you have not already done so.
- Simply copy the SQL code in the Server/main/schema.sql file and paste it in as commands into the PSQL shell.
- In the Server/main/db.js file replace the code with the login info for your own PSQL database.
- After setting up the PSQL database and making the required adjustments in the db.js file, the app will be fully functional.
You can optionally create your own auth0 app and subsitute the credentials in the Client/utils/auth.js file. You can also just use the default credentials I have provided.