Skip to content
Snippets Groups Projects
Commit f2fcf626 authored by Linus Keiser's avatar Linus Keiser :speech_balloon:
Browse files

docs: add npm instructions, Docker install reference

parent b9740207
No related branches found
No related tags found
No related merge requests found
Pipeline #576060 passed
......@@ -3,9 +3,9 @@
Grady is a tool to aid in the process of grading exams at the
University of Goettingen, developed at the Institute for Computer Science.
## Description
<!-- ## Description -->
TODO - write some explanatory prose about the purpose and inner workings of Grady...
<!-- TODO - write some explanatory prose about the purpose and inner workings of Grady... -->
## Getting Started
......@@ -14,12 +14,12 @@ TODO - write some explanatory prose about the purpose and inner workings of Grad
If you are using [Nix](https://nixos.org/), all you'll need is:
- [devenv](https://devenv.sh/getting-started/)
- [direnv](https://direnv.net/)
- [direnv](https://direnv.net/) (optional, automatically activates devenv shell on entering the project directory)
Otherwise, you'll need the following to start developing:
- [Docker](https://docker.com)
- [Bun](https://bun.sh/docs/installation)
- [Docker](https://docs.docker.com/engine/install)
- [Bun](https://bun.sh/docs/installation) or [Node](https://nodejs.org/en/download)/npm
<!-- ### Installing -->
......@@ -27,7 +27,7 @@ Otherwise, you'll need the following to start developing:
### Running the Application
There are two ways to run the application for local development: **with only `devenv`** or **with Docker**. Choose the method that best suits your needs.
There are two ways to run the application for local development: **with only `devenv`** or **with Docker**.
---
......@@ -45,10 +45,12 @@ devenv up
---
#### Option 2: Running without `devenv`
#### Option 2: Running with **Docker**
If you prefer not to use `devenv`, you can start a local SurrealDB instance manually using Docker.
>For installing Docker on your system, refer to the [Docker documentation](https://docs.docker.com/engine/install)
1. Create a directory to persist the development database (this is needed to ensure correct filesystem permissions):
```sh
mkdir -p run/data
......@@ -72,14 +74,30 @@ docker run --rm --pull always \
```sh
bun install
````
Or
```sh
npm install
```
4. Initialize development data
```sh
bun --bun run db/manage.ts init
```
Or
```sh
./db/manage # compiled version incase you don't have Bun available
```
Or
```sh
npm run dev
```
5. Start the app
```sh
bun --bun run dev
```
Or
```sh
npm run dev
```
---
......
......@@ -41,7 +41,8 @@
<!--<nav>(subheader/trail nav)</nav>-->
<!-- Grid Columns -->
<div class="grid grid-cols-1 overflow-hidden md:grid-cols-[auto_1fr]">
<!--<div class="grid grid-cols-1 overflow-hidden md:grid-cols-[auto_1fr]">-->
<div class="grid grid-cols-[auto_1fr] overflow-hidden">
<!-- Sidebar -->
<!-- TODO change for small screen sizes -->
<!-- h-full? apply h-screen if sticky -->
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment