Skip to content

Commit

Permalink
Merge pull request #2 from jd1378/improve_calc
Browse files Browse the repository at this point in the history
Improve calc
  • Loading branch information
wr3yth authored Aug 12, 2024
2 parents 14fcb15 + 2a72da9 commit 62417ff
Show file tree
Hide file tree
Showing 25 changed files with 8,455 additions and 1,982 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ jobs:

- name: Build
run: |
pnpm build
pnpm generate
- uses: actions/configure-pages@v5

- uses: actions/upload-pages-artifact@v3
with:
path: dist
path: .output/public

- name: Deploy
id: deployment
Expand Down
29 changes: 0 additions & 29 deletions .github/workflows/index.html

This file was deleted.

148 changes: 0 additions & 148 deletions .github/workflows/script.js

This file was deleted.

88 changes: 0 additions & 88 deletions .github/workflows/styles.css

This file was deleted.

2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,3 @@ logs
.env
.env.*
!.env.example
deploy
todo
7 changes: 7 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Ignore artifacts:
build
coverage
.nuxt
node_modules
public
pnpm-lock.yaml
77 changes: 75 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,75 @@
# Contraculator
a philosophical calculator that is almost free from most evolutionary pre-assumptions. you should first build its numeric system from ground to be able to work with it.
# Nuxt 3 Minimal Starter

Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.

## Setup

Make sure to install the dependencies:

```bash
# npm
npm install

# pnpm
pnpm install

# yarn
yarn install

# bun
bun install
```

## Development Server

Start the development server on `http://localhost:3000`:

```bash
# npm
npm run dev

# pnpm
pnpm run dev

# yarn
yarn dev

# bun
bun run dev
```

## Production

Build the application for production:

```bash
# npm
npm run build

# pnpm
pnpm run build

# yarn
yarn build

# bun
bun run build
```

Locally preview production build:

```bash
# npm
npm run preview

# pnpm
pnpm run preview

# yarn
yarn preview

# bun
bun run preview
```

Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.
Loading

0 comments on commit 62417ff

Please sign in to comment.