Skip to content

Commit

Permalink
Re-arrange *.md files, work on dockerizing SQL Server
Browse files Browse the repository at this point in the history
  • Loading branch information
entrotech committed Jul 2, 2020
1 parent e255c75 commit 5cae00b
Show file tree
Hide file tree
Showing 18 changed files with 3,737 additions and 1,002 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
**/node_modules
**/db
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -244,3 +244,5 @@ node_modules

# Yarn lockfile
yarn.lock

.mssql.json
115 changes: 0 additions & 115 deletions CHANGELOG.md

This file was deleted.

2 changes: 0 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ WORKDIR /app
RUN npm install
RUN npm run build



FROM node

COPY --from=clientBuilder /app/build /client
Expand Down
6 changes: 6 additions & 0 deletions Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM node:lts-slim
WORKDIR /usr/app
COPY ./package.json ./
RUN npm install
COPY ./ ./
CMD ["npm", "start"]
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,16 @@ The city will benefit by having more time to review edge cases for building deve

# Feature Descriptions

- [register](./register.md)
- [forgot-password](./forgot-password.md)
- [register](./doc/register.md)
- [forgot-password](./doc/forgot-password.md)

# How to contribute

- Join the team on the Hack For LA Slack channel (#tdm-calculator), or at our weekly hack night on Tuesdays in [Hack For LA](https://www.hackforla.org/)!

- To help with user research, find other cities' TDM calculators. For example, check out [SF's TDM Tool](http://www.sftdmtool.org/)

- To contribute to the code, see [Contributing](./Contributing.md)
- To contribute to the code, see [Contributing](./doc/Contributing.md)

### Working with issues

Expand Down
2 changes: 2 additions & 0 deletions client/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
**/node_modules
**/db
6 changes: 6 additions & 0 deletions client/Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM node:alpine
WORKDIR '/app'
COPY package.json .
RUN npm install
COPY . .
CMD ["npm", "run", "start"]
Loading

0 comments on commit 5cae00b

Please sign in to comment.