Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joshnuss/svelte-kit-with-docker
Run your SvelteKit dev environment with Docker
https://github.com/joshnuss/svelte-kit-with-docker
Last synced: about 1 month ago
JSON representation
Run your SvelteKit dev environment with Docker
- Host: GitHub
- URL: https://github.com/joshnuss/svelte-kit-with-docker
- Owner: joshnuss
- Created: 2022-10-14T01:15:21.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2022-10-14T04:59:46.000Z (about 2 years ago)
- Last Synced: 2024-04-14T03:14:25.976Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 22.5 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SvelteKit + Prisma + Docker
Runs SvelteKit in a Docker container, with Postgres in a second container.
### Usage
Start the containers:
```bash
docker compose up --build
```The site is now running on `localhost:5173`
```bash
open localhost:5173
```Postgres is also running, on port `5433`. To connect:
```bash
psql --user=postgres --password --host=localhost --port=5433 postgres
```The password is `postgres`
## License
MIT