Skip to content

Commit

Permalink
Merge pull request #2 from kirubeltadesse/develop
Browse files Browse the repository at this point in the history
feat(ui): add template
  • Loading branch information
kirubeltadesse authored Oct 3, 2023
2 parents c91358e + 35d6653 commit b7a3251
Show file tree
Hide file tree
Showing 22 changed files with 17,920 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules

23 changes: 23 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
14 changes: 14 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM oven/bun

WORKDIR /app

COPY package.json bun.lockb ./

RUN bun install

COPY . .

EXPOSE 3000

CMD ["bun", "run", "start"]

Binary file added bun.lockb
Binary file not shown.
Loading

0 comments on commit b7a3251

Please sign in to comment.