aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkartofen <mladenovnasko0@gmail.com>2022-08-30 11:26:00 +0300
committerkartofen <mladenovnasko0@gmail.com>2022-08-30 11:26:00 +0300
commit2b1828620b05a708bb538790a44bafcf153a060e (patch)
tree8e21f41e1c2049bca5c9b8471e2c901de0af32b4
parent298518e2fcf24c5ab168413f08ccd86570c7de6d (diff)
edit readme
-rw-r--r--README.md52
-rwxr-xr-xrun.sh4
2 files changed, 15 insertions, 41 deletions
diff --git a/README.md b/README.md
index 85c7751..375e724 100644
--- a/README.md
+++ b/README.md
@@ -1,46 +1,20 @@
-# Welcome to [Astro](https://astro.build)
+### Scale
-[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/astro/tree/latest/examples/basics)
+This is scale webapp made using astro, its faster and better, because i know what i am doing this time. Its just better.
-> 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun!
+### Build
-## 🚀 Project Structure
+To build and run see `run.sh`.
-Inside of your Astro project, you'll see the following folders and files:
+For deploying only the `dist/` directory (genereted by `npm run build`)
+is needed and the 'server.mjs' file.
+Using the nodejs command in `run.sh`.
-```
-/
-├── public/
-│ └── favicon.svg
-├── src/
-│ ├── components/
-│ │ └── Card.astro
-│ ├── layouts/
-│ │ └── Layout.astro
-│ └── pages/
-│ └── index.astro
-└── package.json
-```
+Note: When running with node the image saving wont work properly
+because of different directories with images.
-Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
+### What can it do
-There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
-
-Any static assets, like images, can be placed in the `public/` directory.
-
-## 🧞 Commands
-
-All commands are run from the root of the project, from a terminal:
-
-| Command | Action |
-| :--------------------- | :------------------------------------------------- |
-| `npm install` | Installs dependencies |
-| `npm run dev` | Starts local dev server at `localhost:3000` |
-| `npm run build` | Build your production site to `./dist/` |
-| `npm run preview` | Preview your build locally, before deploying |
-| `npm run astro ...` | Run CLI commands like `astro add`, `astro preview` |
-| `npm run astro --help` | Get help using the Astro CLI |
-
-## 👀 Want to learn more?
-
-Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).
+It can do whatever the
+[scale app made with svelte](https://gitlab.com/scale-project/scale)
+can, but faster and better, for info about the project see its readme.
diff --git a/run.sh b/run.sh
index c1a87f7..4a285e9 100755
--- a/run.sh
+++ b/run.sh
@@ -3,9 +3,9 @@
cd ${0%/*} # go to project root
set -xe
+# development
NODE_TLS_REJECT_UNAUTHORIZED=0 npm run dev -- --host
+# deploy
# npm run build
# NODE_TLS_REJECT_UNAUTHORIZED=0 node server.mjs
-
-# deno run --allow-net --allow-read --allow-env --unsafely-ignore-certificate-errors=localhost ./dist/server/entry.mjs