Merge pull request #219 from appwrite/feat-contributing-steps

Update contributing guide for dev server
This commit is contained in:
Torsten Dittmann
2023-01-27 13:33:53 +01:00
committed by GitHub
+6 -1
View File
@@ -33,12 +33,17 @@ If you are worried or dont know where to start, check out our next section ex
## Development
Once you've created a project and installed dependencies with `npm install`, start a development server:
Once you've created a project and installed dependencies with `npm install`, create a `.env` file using `.env.example` as a template.
Finally, start a development server:
```bash
npm run dev
```
> **Note**
> If http://localhost:3000 is blank and the browser console logs have a `TypeError: Failed to fetch dynamically imported module: http://localhost:3000/.svelte-kit/generated/nodes/0.js` error, try to turn off any ad blocker you have and reload the page ([reference](https://github.com/sveltejs/kit/issues/3308#issuecomment-1149942109)).
### Build
```bash