Skip to content

Commit

Permalink
Rename repository (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
aifrak authored Jun 17, 2021
1 parent 6682d5e commit 5f0df5d
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "app",
"name": "dotfiles",
"dockerComposeFile": [
"../docker-compose.yml",
"../docker-compose.dev.yml",
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-20.04
env:
IMAGE_TARGET: base
IMAGE_TAG: aifrak/dev-env:latest
IMAGE_TAG: aifrak/dotfiles:latest
CACHE_OLD: /tmp/.buildx-cache
CACHE_NEW: /tmp/.buildx-cache-new

Expand Down
13 changes: 7 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

# Changelog

## [v0.3.0](https://github.com/aifrak/dev-env/releases/tag/v0.3.0)
## [v0.3.0](https://github.com/aifrak/dotfiles/releases/tag/v0.3.0)

### New

Expand All @@ -18,6 +18,7 @@

### BREAKING CHANGE

- Rename repository to `dotfiles`
- Remove `username` argument from `./install` and `./uninstall`: copied files
will be located in the current user's `HOME` folder
- Remove `Oh My Zsh`
Expand All @@ -30,13 +31,13 @@

- `fzf` and `lsdeluxe` are installed via `asdf`

## [v0.2.1](https://github.com/aifrak/dev-env/releases/tag/v0.2.1)
## [v0.2.1](https://github.com/aifrak/dotfiles/releases/tag/v0.2.1)

### Bug fix

- Improve documentation in README.md and `--help` option

## [v0.2.0](https://github.com/aifrak/dev-env/releases/tag/v0.2.0)
## [v0.2.0](https://github.com/aifrak/dotfiles/releases/tag/v0.2.0)

### New

Expand All @@ -50,13 +51,13 @@

- Less verbose when extract archive

## [v0.1.2](https://github.com/aifrak/dev-env/releases/tag/v0.1.2)
## [v0.1.2](https://github.com/aifrak/dotfiles/releases/tag/v0.1.2)

### Bug fix

- Fix ignored options after "--zsh"

## [v0.1.1](https://github.com/aifrak/dev-env/releases/tag/v0.1.1)
## [v0.1.1](https://github.com/aifrak/dotfiles/releases/tag/v0.1.1)

### Bug fix

Expand All @@ -67,7 +68,7 @@

- Add "ca-certificates" package as requirements

## [v0.1.0](https://github.com/aifrak/dev-env/releases/tag/v0.1.0)
## [v0.1.0](https://github.com/aifrak/dotfiles/releases/tag/v0.1.0)

### New

Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

Personal install script for dotfiles, zsh, asdf and zinit (Debian).

[![Last release](https://img.shields.io/github/v/release/aifrak/dev-env?label=Last%20release)](https://github.com/aifrak/dev-env/releases)
[![Tests](https://github.com/aifrak/dev-env/actions/workflows/tests.yml/badge.svg)](https://github.com/aifrak/dev-env/actions/workflows/tests.yml)
[![License](https://img.shields.io/github/license/aifrak/dev-env?color=blue)](https://github.com/aifrak/dev-env/blob/master/LICENSE)
[![Last release](https://img.shields.io/github/v/release/aifrak/dotfiles?label=Last%20release)](https://github.com/aifrak/dotfiles/releases)
[![Tests](https://github.com/aifrak/dotfiles/actions/workflows/tests.yml/badge.svg)](https://github.com/aifrak/dotfiles/actions/workflows/tests.yml)
[![License](https://img.shields.io/github/license/aifrak/dotfiles?color=blue)](https://github.com/aifrak/dotfiles/blob/master/LICENSE)

## Requirements ❗

Expand Down Expand Up @@ -49,8 +49,8 @@ This option is not necessary, if all tools are already pre-installed.
## How to install 💡

```shell
git clone https://github.com/aifrak/dev-env.git
./dev-env/install [options...]
git clone https://github.com/aifrak/dotfiles.git
./dotfiles/install [options...]
```

### Install options
Expand All @@ -67,17 +67,17 @@ Options:
## How to uninstall ➖

```shell
./dev-env/uninstall
./dotfiles/uninstall
```

Note: Dependencies are not removed.

### How to update ➕

```shell
./dev-env/uninstall
(cd ./dev-env && git fetch && git pull)
./dev-env/install [install options...]
./dotfiles/uninstall
(cd ./dotfiles && git fetch && git pull)
./dotfiles/install [install options...]
```

## Theme
Expand All @@ -86,4 +86,4 @@ Note: Dependencies are not removed.

## License

[MIT License](https://github.com/aifrak/dev-env/blob/main/LICENSE)
[MIT License](https://github.com/aifrak/dotfiles/blob/main/LICENSE)
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
build:
context: .
target: base
image: aifrak/dev-env:latest
image: aifrak/dotfiles:latest
volumes:
- .:/app
- app-node-modules:/app/node_modules
Expand Down
4 changes: 2 additions & 2 deletions install
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ function install_packages {
}

function copy_dotfiles {
cp -r "${config_dir}/dotfiles/." "${HOME}"
cp -r "${config_dir}/zsh/." "${HOME}"

success "✓ Dotfiles copied"
}
Expand Down Expand Up @@ -286,7 +286,7 @@ validate "${@}"

current_dir="$(dirname "$(readlink -f "${0}")")"
config_dir=${current_dir}/config
tmp=${HOME}/tmp/dev-env
tmp=${HOME}/tmp/dotfiles

export ASDF_DIR=${HOME}/.asdf
export PATH="${PATH}:${ASDF_DIR}/bin:${ASDF_DIR}/shims"
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5f0df5d

Please sign in to comment.