Skip to content
This repository was archived by the owner on May 7, 2026. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions rocky/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
node_modules

# Output
.output
.vercel
.netlify
.wrangler
/.svelte-kit
/build

# OS
.DS_Store
Thumbs.db

# Env
.env
.env.*
!.env.example
!.env.test

# Vite
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
1 change: 1 addition & 0 deletions rocky/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
engine-strict=true
9 changes: 9 additions & 0 deletions rocky/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Package Managers
package-lock.json
pnpm-lock.yaml
yarn.lock
bun.lock
bun.lockb

# Miscellaneous
/static/
17 changes: 17 additions & 0 deletions rocky/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"useTabs": true,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 100,
"plugins": [
"prettier-plugin-svelte"
],
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
]
}
36 changes: 36 additions & 0 deletions rocky/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Rocky Interface
Kent State University's Computer Science's Web Interface to Obtain API Keys for Student Projects.

## Developing

### First time running

After cloning the repository or switching branches, install the dependencies:
```sh
npm install
```

### Testing
Everything you need to build a Svelte project: (https://github.com/sveltejs/cli).

Make sure you have npm and svelte installed. Then, start a development server:

```sh
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:

```sh
npm run build
```

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


> To deploy the app, we need to install an [adapter](https://svelte.dev/docs/kit/adapters) for our target environment.
Loading