Skip to content

Commit

Permalink
fix(devcontainer): Remove diesel
Browse files Browse the repository at this point in the history
  • Loading branch information
9876691 committed Apr 30, 2022
1 parent 84afe23 commit f6f2e11
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/rust-on-nails-devcontainer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ jobs:
run: docker login --username "$DOCKERHUB_USERNAME" --password "$DOCKERHUB_TOKEN"

- name: Build Docker file
run: docker build -t purtontech/rust-on-nails-devcontainer dev-env-as-code
run: |
docker build -t purtontech/rust-on-nails-devcontainer dev-env-as-code
docker push purtontech/rust-on-nails-devcontainer
# If this is a release
# create release notes
Expand Down
5 changes: 1 addition & 4 deletions dev-env-as-code/aliases.bash
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,7 @@ alias cw='mold -run cargo watch --no-gitignore -i "*.scss" -i "*.ts" -i node_mod
# npm
alias nrs='npm run start'

# Database migrations
alias mr='diesel migration run'
alias mre='diesel migration redo'
alias ml='diesel migration list'
# Database
alias db='psql $DATABASE_URL'

# Leave a line below or the files will cat together

0 comments on commit f6f2e11

Please sign in to comment.