dlsiem-gear-second
v1.0.8
Published
This is react postgress express nodejs tailwindcss typescript jwt authenticated fullstack template
Downloads
24
Readme
React Express Template
Technologies
Front-end
- Vite React Typescript
- Redux - For state management
- React-Router-Dom - Routing
- Tailwindcss - For styling
Back-end
- Express (Nodejs)
- Postgres - Database
- Typescript
- JWT - Authentication
Run in your local environment
Download
npx dlsiem-gear-second <my-app>
cd my-app
Run the front-end
cd client
npm install
npm run dev
Make sure to create .env credentials before runnning the back-end
PORT = 5000
DB_USERNAME = "your_db_username"
DB_PASSWORD = "your_db_password"
DB_NAME = "your_db_name"
DB_HOST = "localhost"
DB_PORT = 5432
JWT_SECRET = "your_secret"
Run the back-end
cd server
npm install
npm run dev