Skip to content

Commit

Permalink
rename app-template repo to templates
Browse files Browse the repository at this point in the history
  • Loading branch information
CyberHoward committed Oct 17, 2024
1 parent d607e86 commit 9174713
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Read [the complete documentation](https://docs.abstract.money/) for more informa

The repository is structured as follows:

- **app-template:** A template for creating new Abstract apps. See [app-template repo](https://github.com/AbstractSDK/app-template) for a cloneable version.
- **templates:** Templates for creating new Abstract modules. See the [templates repo](https://github.com/AbstractSDK/templates) to generate your template.
- **framework:** The Abstract framework. This is the core of the Abstract project and contains the smart-contracts and packages related to the on-chain abstract accounts and surrounding infrastructure. Have a look at the [Abstract SDK documentation](https://docs.abstract.money/3_framework/1_abstract_sdk.html) if you're interested in building with Abstract!
- **modules:** The Abstract-maintained modules. These are a set of example apps that are built on top of the Abstract framework. They can be used as standalone applications or as building blocks for creating more complex applications.
- **integrations:** Integrations with other projects, particularly dexes.
Expand Down
2 changes: 1 addition & 1 deletion framework/docs/src/1_products/2_abstract_app_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The primary focus of the Abstract App Template is to provide a template for buil

## Getting Started

To get started, please go to the <a href="https://github.com/AbstractSDK/app-template" target="_blank">Abstract App
To get started, please go to the <a href="https://github.com/AbstractSDK/templates" target="_blank">Abstract App
Template Github Repo</a> and follow the instructions in the README.

In there you can find instructions on how to generate a new Abstract App, how to test it, deploy it, and generate
Expand Down
2 changes: 1 addition & 1 deletion framework/docs/src/4_get_started/2_installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Now we'll get you set up with the Abstract App template which contains:
- Integration tests
- A set of just commands that will help you in your development.

Go to <a href="https://github.com/AbstractSDK/app-template" target="_blank">our App Template on Github</a> and click on the "Use this template" button to create a new repository based on the template. You can name the repository whatever you want, but we recommend using the name of your module.
Go to <a href="https://github.com/AbstractSDK/templates" target="_blank">our App Template on Github</a> and click on the "Use this template" button to create a new repository based on the template. You can name the repository whatever you want, but we recommend using the name of your module.

![](../resources/get_started/use-this-template.webp)

Expand Down
2 changes: 1 addition & 1 deletion framework/docs/src/4_get_started/3_module_builder.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ For now just know that we provide you with a builder pattern that allows you to
The builder pattern employed in building an Abstract module is a slight variation of the actual "builder" design pattern. Instead of creating a new builder at runtime, our module builder lets you set custom attributes on your module at compile time, meaning you end up with a `const` value can be heavily optimized by the compiler. This system ensures that the overhead of using Abstract has little effect on both the code's runtime and WASM binary size.

```admonish info
The code-snippets in this example can be found in the <a href="https://github.com/AbstractSDK/app-template" target="_blank">app template</a>.
The code-snippets in this example can be found in the <a href="https://github.com/AbstractSDK/templates" target="_blank">app template</a>.
```

In this tutorial we will be working on an [`App` module](../3_framework/6_module_types.md#apps).
Expand Down
2 changes: 1 addition & 1 deletion framework/docs/src/4_get_started/6_module_testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ This provides you with a streamlined approach to test and validate smart contrac

## Local Daemon Testing

Once you have confirmed that your module works as expected you can spin up a local node and deploy Abstract + your app onto the chain. You can do this by running the [local_daemon](https://github.com/AbstractSDK/app-template/blob/main/examples/local_daemon.rs) example, which uses a locally running juno daemon to
Once you have confirmed that your module works as expected you can spin up a local node and deploy Abstract + your app onto the chain. You can do this by running the [local_daemon](https://github.com/AbstractSDK/templates/blob/main/examples/local_daemon.rs) example, which uses a locally running juno daemon to
deploy to. At this point you can also test your front-end with the contracts.

```admonish info
Expand Down

0 comments on commit 9174713

Please sign in to comment.