Skip to content

Commit f6feffd

Browse files
copy-paste from internal projects
1 parent 1c25b31 commit f6feffd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+3982
-0
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.idea
2+
node_modules
3+
npm-debug.log
4+
*.js.map

Makefile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
up:
2+
sudo docker-compose up -d
3+
4+
app:
5+
sudo docker exec -it devspace_svelte_frontend bash
6+
7+
down:
8+
sudo docker-compose down
9+
10+
view:
11+
google-chrome public/index.html

docker-compose.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
version: "2"
2+
3+
services:
4+
devspace_frontend:
5+
container_name: "devspace_svelte_frontend"
6+
build:
7+
context: .
8+
dockerfile: ./docker/Dockerfile
9+
working_dir: /usr/local/app
10+
volumes:
11+
- .:/usr/local/app
12+
- ./docker/.bash_history:/root/.bash_history:ro
13+
command: "sleep 1d"

docker/.bash_history

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
exit
2+
npm i
3+
npm run build

docker/Dockerfile

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
FROM node:latest
2+
3+
RUN npm install --global rollup

0 commit comments

Comments
 (0)