Skip to content

Commit

Permalink
feat: init
Browse files Browse the repository at this point in the history
  • Loading branch information
William Karkegi committed Nov 19, 2023
0 parents commit 1cae9a3
Show file tree
Hide file tree
Showing 19 changed files with 3,801 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
DATABASE_PASSWORD=backend
DATABASE_USER=backend
DATABASE_NAME=backend
DATABASE_HOST=localhost
DATABASE_PORT=5454
18 changes: 18 additions & 0 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: CICD

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/target
.env
docker/volumes
Loading

0 comments on commit 1cae9a3

Please sign in to comment.