mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
⚡ add update demo script, remove duplicate toast, try hash route
This commit is contained in:
parent
10497c9cb0
commit
6a3d2c3195
@ -1,11 +1,12 @@
|
||||
import {NgModule} from '@angular/core';
|
||||
import { Routes, RouterModule } from '@angular/router';
|
||||
import {RouterModule, Routes} from '@angular/router';
|
||||
|
||||
|
||||
const routes: Routes = [];
|
||||
|
||||
@NgModule({
|
||||
imports: [RouterModule.forRoot(routes)],
|
||||
imports: [RouterModule.forRoot(routes, {useHash: true})],
|
||||
exports: [RouterModule]
|
||||
})
|
||||
export class AppRoutingModule { }
|
||||
export class AppRoutingModule {
|
||||
}
|
||||
|
@ -38,7 +38,6 @@
|
||||
modification.
|
||||
</p >
|
||||
|
||||
|
||||
</section >
|
||||
<section class="public" >
|
||||
|
||||
@ -89,4 +88,3 @@
|
||||
|
||||
</section >
|
||||
|
||||
<p-toast position="bottom-right"></p-toast>
|
||||
|
7
update-demo.sh
Normal file
7
update-demo.sh
Normal file
@ -0,0 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
git pull origin dev
|
||||
yarn install --pure-lockfile
|
||||
yarn build
|
||||
sudo cp -r ./dist/framadate/* ../framadate-api/public/
|
||||
echo " now check update demo at https://framadate-api.cipherbliss.com/index.html "
|
Loading…
Reference in New Issue
Block a user