https://github.com/chientrm/drive
https://github.com/chientrm/drive
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/chientrm/drive
- Owner: chientrm
- Created: 2025-04-07T08:15:33.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-07T08:15:36.000Z (about 1 year ago)
- Last Synced: 2025-07-04T14:52:27.059Z (11 months ago)
- Language: JavaScript
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Template Project
This is a template project using Express.js and Vite.
## Features
- Serves static files from the `dist` directory.
- Configurable via environment variables.
- Includes a basic Express.js server.
## Setup
1. Clone the repository:
```bash
git clone
cd template
```
2. Install dependencies:
```bash
pnpm install
```
3. Create a `.env` file in the root directory and configure the following variables:
```
PORT=3000
```
## Development
To start the development server:
```bash
pnpm dev
```
## Build
To build the project for production:
```bash
pnpm build
```
## Production
To start the production server:
```bash
pnpm start
```
Ensure the `dist` directory is built before starting the server.
## License
This project is licensed under the MIT License.