https://github.com/ariym/base-express
Starter boilerplate for typescript projects using nodemon.
https://github.com/ariym/base-express
Last synced: about 1 month ago
JSON representation
Starter boilerplate for typescript projects using nodemon.
- Host: GitHub
- URL: https://github.com/ariym/base-express
- Owner: ariym
- Created: 2022-12-09T02:13:55.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-11-28T20:26:25.000Z (over 2 years ago)
- Last Synced: 2025-01-02T12:45:02.105Z (over 1 year ago)
- Language: TypeScript
- Size: 63.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# base-express
Starter boilerplate
## Getting started
```text
npm i
# creates .db file with the name in .env of the type in schema.prisma
npx prisma migrate dev --name init
cp env.template .env
npm run dev
```
## Docker
```text
# Create Docker Image
docker build -t base-express .
# Run Docker Image
docker run -p 3000:3000 -d base-express
```
## Made With
* Typescript
* Express
* Prisma
* dotenv
* multer