Deleyt
This commit is contained in:
parent
0349aeaf5b
commit
9cf6f586be
1 changed files with 0 additions and 51 deletions
51
README.md
51
README.md
|
|
@ -1,51 +0,0 @@
|
||||||
# Icebreaker
|
|
||||||
|
|
||||||
A simple HTML/CSS/JS website served via Nginx.
|
|
||||||
|
|
||||||
## Setup
|
|
||||||
|
|
||||||
1. Copy the environment file and configure it:
|
|
||||||
```bash
|
|
||||||
cp .env.example .env
|
|
||||||
```
|
|
||||||
|
|
||||||
2. Edit `.env` and set your domain and email:
|
|
||||||
```
|
|
||||||
NGINX_HOST=icebreaker.yourdomain.com
|
|
||||||
LETSENCRYPT_EMAIL=your-email@example.com
|
|
||||||
```
|
|
||||||
|
|
||||||
3. Make sure the proxy is running:
|
|
||||||
```bash
|
|
||||||
cd ../proxy && docker compose up -d
|
|
||||||
```
|
|
||||||
|
|
||||||
4. Start the service:
|
|
||||||
```bash
|
|
||||||
make up
|
|
||||||
```
|
|
||||||
|
|
||||||
## Commands
|
|
||||||
|
|
||||||
- `make up` - Start the container
|
|
||||||
- `make down` - Stop the container
|
|
||||||
- `make logs` - View logs
|
|
||||||
- `make restart` - Restart the container
|
|
||||||
|
|
||||||
## Structure
|
|
||||||
|
|
||||||
```
|
|
||||||
icebreaker/
|
|
||||||
├── docker-compose.yml
|
|
||||||
├── Makefile
|
|
||||||
├── README.md
|
|
||||||
├── .env.example
|
|
||||||
└── src/
|
|
||||||
├── index.html
|
|
||||||
├── css/
|
|
||||||
│ └── style.css
|
|
||||||
└── js/
|
|
||||||
└── main.js
|
|
||||||
```
|
|
||||||
|
|
||||||
Edit files in `src/` - changes are reflected immediately (no rebuild needed).
|
|
||||||
Loading…
Reference in a new issue