Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix typos and link update #1936

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ npm run build-all

## Taqueria Tests
### Unit Tests
Running the unit tests requires deno is installed on your system. Installation instructions can be found [here](https://deno.land/manual@v1.18.2/getting_started/installation)
Running the unit tests requires deno is installed on your system. Installation instructions can be found [here](https://docs.deno.com/runtime/manual/getting_started/installation)

### E2E and Integration tests
If you are running from built sources, start with `npm run build-all`
Expand Down
4 changes: 2 additions & 2 deletions website/docs/tasks/init.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ title: init

Taq `init` is used to initialize a Taqueria project. It can be used to create a new project from scratch, or can `taq'ify` an existing project

Running `taq init` with no argumets will taq'ify the current directory, while `taq init [path]` will create a new taq'ified directory at the given path
Running `taq init` with no arguments will taq'ify the current directory, while `taq init [path]` will create a new taq'ified directory at the given path

You may also supply the `-w/--workflow` flag if you'd like to have the necessary plugins pre-installed for you depending on what kind of developer you are: ligo, smartpy, archetype, or michelson. E.g. `taq init [path] --workflow [language]`

The task will create the following directories:

- `.taq` - Taqueria configuation files (`config.json`, `state.json`, `development-state.json`)
- `.taq` - Taqueria configuration files (`config.json`, `state.json`, `development-state.json`)
- `contracts` - The default directory for smart contract source files
- `artifacts` - The default directory for Michelson files

Expand Down