https://github.com/mystpi/memory-o-matic
https://github.com/mystpi/memory-o-matic
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mystpi/memory-o-matic
- Owner: MystPi
- Created: 2023-10-06T15:51:59.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-04T16:46:18.000Z (over 2 years ago)
- Last Synced: 2025-03-02T01:18:48.033Z (over 1 year ago)
- Language: Gleam
- Homepage: https://mystpi.github.io/memory-o-matic/
- Size: 283 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Lustre + Gleam + Typescript
[Repository](https://github.com/Endercheif/vite-gleam)
## Template Tour
```
├── .gitignore // list of files/folders hidden by git
├── assets // location of static/nonjs files to be (images, css). can be imported/compiled
│ └── main.css
├── public // location of static files served on the root of the site (ex: `example.com/image.svg`)
│ └── gleam.svg
│ └── vite.svg
├── gleam.toml // no need to edit
├── index.html // modify as you wish, keep script tag
├── package.json // reference node packages and used to run commands
├── README.md
├── src // location of your actual program, do stuff here
│ ├── main.js // entry point referenced by index.html
│ └── app.gleam
├── jsconfig.json // settings for typescript
└── vite.config.js // settings for vite
```
## Quick start
Install depenencies
```sh
npm install
# or `yarn install` / `pnpm install`
```
Run development server and make changes in `/src`
```sh
npm run dev
```
Build for production
```sh
npm run build
npm run preview # preview output
```
Ship and serve `/dist`