This commit is contained in:
parent
6ca637658f
commit
c1264ac2fe
9 changed files with 41 additions and 46 deletions
|
@ -1,2 +1 @@
|
||||||
# peer-group-grading
|
# peer-group-grading
|
||||||
|
|
||||||
|
|
|
@ -2,5 +2,4 @@ use actix_web::web::{self, ServiceConfig};
|
||||||
|
|
||||||
pub fn register_controllers(cfg: &mut ServiceConfig) {
|
pub fn register_controllers(cfg: &mut ServiceConfig) {
|
||||||
cfg.service(web::scope("/users"));
|
cfg.service(web::scope("/users"));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
use actix_session::{SessionMiddleware, storage::RedisSessionStore};
|
use actix_session::{storage::RedisSessionStore, SessionMiddleware};
|
||||||
use actix_web::{App, HttpResponse, HttpServer, cookie::Key, middleware::Logger, web};
|
use actix_web::{cookie::Key, middleware::Logger, web, App, HttpResponse, HttpServer};
|
||||||
|
|
||||||
mod controller;
|
mod controller;
|
||||||
|
|
||||||
|
|
|
@ -1,41 +1,41 @@
|
||||||
# Running Migrator CLI
|
# Running Migrator CLI
|
||||||
|
|
||||||
- Generate a new migration file
|
- Generate a new migration file
|
||||||
```sh
|
```sh
|
||||||
cargo run -- generate MIGRATION_NAME
|
cargo run -- generate MIGRATION_NAME
|
||||||
```
|
```
|
||||||
- Apply all pending migrations
|
- Apply all pending migrations
|
||||||
```sh
|
```sh
|
||||||
cargo run
|
cargo run
|
||||||
```
|
```
|
||||||
```sh
|
```sh
|
||||||
cargo run -- up
|
cargo run -- up
|
||||||
```
|
```
|
||||||
- Apply first 10 pending migrations
|
- Apply first 10 pending migrations
|
||||||
```sh
|
```sh
|
||||||
cargo run -- up -n 10
|
cargo run -- up -n 10
|
||||||
```
|
```
|
||||||
- Rollback last applied migrations
|
- Rollback last applied migrations
|
||||||
```sh
|
```sh
|
||||||
cargo run -- down
|
cargo run -- down
|
||||||
```
|
```
|
||||||
- Rollback last 10 applied migrations
|
- Rollback last 10 applied migrations
|
||||||
```sh
|
```sh
|
||||||
cargo run -- down -n 10
|
cargo run -- down -n 10
|
||||||
```
|
```
|
||||||
- Drop all tables from the database, then reapply all migrations
|
- Drop all tables from the database, then reapply all migrations
|
||||||
```sh
|
```sh
|
||||||
cargo run -- fresh
|
cargo run -- fresh
|
||||||
```
|
```
|
||||||
- Rollback all applied migrations, then reapply all migrations
|
- Rollback all applied migrations, then reapply all migrations
|
||||||
```sh
|
```sh
|
||||||
cargo run -- refresh
|
cargo run -- refresh
|
||||||
```
|
```
|
||||||
- Rollback all applied migrations
|
- Rollback all applied migrations
|
||||||
```sh
|
```sh
|
||||||
cargo run -- reset
|
cargo run -- reset
|
||||||
```
|
```
|
||||||
- Check the status of all migrations
|
- Check the status of all migrations
|
||||||
```sh
|
```sh
|
||||||
cargo run -- status
|
cargo run -- status
|
||||||
```
|
```
|
||||||
|
|
|
@ -57,6 +57,7 @@
|
||||||
prettier = {
|
prettier = {
|
||||||
command = "prettier";
|
command = "prettier";
|
||||||
options = [ "--write" ];
|
options = [ "--write" ];
|
||||||
|
excludes = [ "pnpm-lock.yaml" ];
|
||||||
includes = [
|
includes = [
|
||||||
"*.css"
|
"*.css"
|
||||||
"*.html"
|
"*.html"
|
||||||
|
|
|
@ -21,7 +21,7 @@ export default defineConfigWithVueTs(
|
||||||
|
|
||||||
pluginVue.configs['flat/essential'],
|
pluginVue.configs['flat/essential'],
|
||||||
vueTsConfigs.recommended,
|
vueTsConfigs.recommended,
|
||||||
|
|
||||||
{
|
{
|
||||||
...pluginVitest.configs.recommended,
|
...pluginVitest.configs.recommended,
|
||||||
files: ['src/**/__tests__/*'],
|
files: ['src/**/__tests__/*'],
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
<!DOCTYPE html>
|
<!doctype html>
|
||||||
<html lang="">
|
<html lang="">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8" />
|
||||||
<link rel="icon" href="/favicon.ico">
|
<link rel="icon" href="/favicon.ico" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>Vite App</title>
|
<title>Vite App</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
|
@ -7,14 +7,10 @@ import vueDevTools from 'vite-plugin-vue-devtools'
|
||||||
|
|
||||||
// https://vite.dev/config/
|
// https://vite.dev/config/
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
plugins: [
|
plugins: [vue(), vueJsx(), vueDevTools()],
|
||||||
vue(),
|
|
||||||
vueJsx(),
|
|
||||||
vueDevTools(),
|
|
||||||
],
|
|
||||||
resolve: {
|
resolve: {
|
||||||
alias: {
|
alias: {
|
||||||
'@': fileURLToPath(new URL('./src', import.meta.url))
|
'@': fileURLToPath(new URL('./src', import.meta.url)),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
packages:
|
packages:
|
||||||
- 'frontend'
|
- "frontend"
|
||||||
|
|
Loading…
Add table
Reference in a new issue