feat: implement StaySense MVP backend, frontend, imports, and deployment docs
This commit is contained in:
commit
902988276c
24 changed files with 2536 additions and 0 deletions
27
docs/GITHUB_PUBLISH.md
Normal file
27
docs/GITHUB_PUBLISH.md
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
# GitHub Publish Guide
|
||||
|
||||
## 1. Repository erstellen
|
||||
|
||||
- Neues GitHub Repo erstellen, z. B. `staysense-mvp`
|
||||
- Private oder Public nach Bedarf
|
||||
|
||||
## 2. Remote setzen
|
||||
|
||||
```bash
|
||||
cd StaySense
|
||||
git remote add origin git@github.com:<ORG_OR_USER>/<REPO>.git
|
||||
# alternativ HTTPS:
|
||||
# git remote add origin https://github.com/<ORG_OR_USER>/<REPO>.git
|
||||
```
|
||||
|
||||
## 3. Push
|
||||
|
||||
```bash
|
||||
git push -u origin main
|
||||
```
|
||||
|
||||
## 4. Empfohlene Repo-Settings
|
||||
|
||||
- Branch Protection fuer `main`
|
||||
- Issues/Projects aktivieren
|
||||
- Secrets fuer Deployment (falls CI/CD)
|
||||
Loading…
Add table
Add a link
Reference in a new issue