Skip to content
This repository was archived by the owner on Jun 28, 2025. It is now read-only.

Commit a8526d8

Browse files
committed
feat(root) => Add simple bash script for local startup of project
1 parent f61f67a commit a8526d8

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

local-startup.sh

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#!/bin/bash
2+
3+
# Copy .env.example to .env on root
4+
cp .env.example .env
5+
6+
# Copy .env.example to .env on cms
7+
cd cms
8+
cp .env.example .env
9+
cd ..
10+
11+
# Copy .env.example to .env on web
12+
cd web
13+
cp .env.example .env
14+
cd ..
15+
16+
echo "All .env.example contents have been copied to .env"
17+
18+
docker compose -f docker-compose.local.yml up

0 commit comments

Comments
 (0)