Merge branch 'main' of github.com:appwrite/console into feat-databases-v2

This commit is contained in:
Arman
2023-03-01 14:45:13 +01:00
3 changed files with 19 additions and 2 deletions
+13 -1
View File
@@ -33,7 +33,19 @@ If you are worried about or dont know where to start, check out the next sect
## Development
Once you've created a project and installed dependencies with `npm install`, create a `.env` file using `.env.example` as a template.
### 1. Clone the repository with git
```bash
git clone https://github.com/appwrite/console.git appwrite-console
```
### 2. Install dependencies with npm
```bash
npm install
```
### 3. Setup environment variables
Add a `.env` file by copying the `.env.example` file as a template in the project's root directory.
Finally, start a development server:
+1 -1
View File
@@ -43,7 +43,7 @@
<span class="text">ⓒ {currentYear} Appwrite. All rights reserved.</span>
</li>
<li class="inline-links-item u-flex u-gap-8">
<a href="https://github.com/appwrite/console" target="_blank" rel="noreferrer">
<a href="https://github.com/appwrite/appwrite" target="_blank" rel="noreferrer">
<span class="icon-github" aria-hidden="true" aria-label="Appwrite on Github" />
</a>
<a href="https://appwrite.io/discord" target="_blank" rel="noreferrer">
@@ -54,6 +54,11 @@
key = null;
selectedOption = null;
$option = null;
data = {
required: false,
array: false,
default: null
};
}
</script>