Skip to content

lvnam96/homemade-food-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

115 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Better Stack Badge wakatime

Useful links

Platforms

Development

For first-time database setup, there will be some SQL scripts to create database schema and seed data. This is done automatically if the volume of postgres database service is empty. See docker-compose.yml for more details.

To init development server, run the following commands:

# Install dependencies (if not installed yet)
pnpm install

# Rename `.env.example` to `.env`
cp .env.example .env

# Init services
pnpm dev # enable Docker compose's watch mode to auto rebuild Remix image on deps change; press Ctrl+C to exit

To stop development server, run:

# Remove services' containers and volumes
pnpm dev:down