Skip to content

Commit

Permalink
Merge pull request #33 from berrysauce/justatemp
Browse files Browse the repository at this point in the history
Switch to Just a Temp
  • Loading branch information
berrysauce authored Feb 5, 2024
2 parents 8093142 + 8d73564 commit d90f056
Show file tree
Hide file tree
Showing 116 changed files with 14,241 additions and 3,285 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -101,4 +101,7 @@ dist
.dynamodb/

# TernJS port file
.tern-port
.tern-port

# Development Notes
dev.md
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<h1 align="center">♻️ junk.boats</h1>
<h1 align="center">📮 Just a Temp</h1>
<p align="center">The free temporary email service powered by Cloudflare
<br>
</br>
Expand All @@ -9,9 +9,7 @@
> ℹ️ This service is 100% powered by [Cloudflare](https://www.cloudflare.com/)
> [!IMPORTANT]
> junk.boats will no longer be available under this domain. The service will now be available under [justatemp.com](https://justatemp.com/). Right now, it's temporarily unavailable. Please check back in January 2024.
>
> **Thanks for all the love, see you all next year ❤️**
> This project was previously available under the domain "junk.boats".
### What is junk.boats?
junk.boats is a yet another, free to use, open source, and of course, privacy-friendly, temporary email generator. You can use junk.boats to receive emails from sites you don't really want to give your email to. All received emails are publicly stored for 2 hours and then permanently deleted.
Expand Down
10 changes: 10 additions & 0 deletions frontend/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.DS_Store
node_modules
/build
/.svelte-kit
/package
.env
.env.*
!.env.example
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
1 change: 1 addition & 0 deletions frontend/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
engine-strict=true
38 changes: 38 additions & 0 deletions frontend/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# create-svelte

Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/main/packages/create-svelte).

## Creating a project

If you're seeing this, you've probably already done this step. Congrats!

```bash
# create a new project in the current directory
npm create svelte@latest

# create a new project in my-app
npm create svelte@latest my-app
```

## Developing

Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:

```bash
npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open
```

## Building

To create a production version of your app:

```bash
npm run build
```

You can preview the production build with `npm run preview`.

> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.
18 changes: 18 additions & 0 deletions frontend/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"moduleResolution": "bundler"
}
// Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias and https://kit.svelte.dev/docs/configuration#files
//
// If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
// from the referenced tsconfig.json - TypeScript does not merge them in
}
Loading

0 comments on commit d90f056

Please sign in to comment.