Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: adding README #21

Merged
merged 2 commits into from
May 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 29 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,29 @@
# Blogue-Server
# Blogue-Server
### Environment Configuration

- **local**
- Host: localhost
- Database: PostgreSQL (running locally)

- **test**
- Host: Ubuntu (GitHub Actions)
- Database: PostgreSQL (Docker container)

- **dev**
- Host: Ubuntu (AWS EC2)
- Database: PostgreSQL (AWS RDS)

- **prod**
- Host: -
- Database: -

### Git flows
- **feature branches**
- each feature is developed in its own branch
- contain the features planned for next releases
- **develop branch**
- completed features for development are integrated in this branch
- after merging into the develop branch, ci/cd for develop server is triggered
- **main branch**
- contains stable code intended for production deployment.
- (after merging into the main branch, ci/cd for production server is triggered)
Loading