- Timestamp:
- 07/22/20 15:23:50 (4 years ago)
- Branches:
- master
- Children:
- 37c8d1d
- Parents:
- 96108d8
- Location:
- Farmatiko
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
Farmatiko/ClientApp/src/app/korona/korona.component.css
r96108d8 ra8ccc2c 1 1 .counter { 2 background-color:#f5f5f5;3 4 2 background-color: #f5f5f5; 3 padding: 20px 0; 4 border-radius: 5px; 5 5 } 6 6 7 7 .count-title { 8 9 10 11 12 8 font-size: 40px; 9 font-weight: normal; 10 margin-top: 10px; 11 margin-bottom: 0; 12 text-align: center; 13 13 } 14 14 15 15 .count-text { 16 17 18 19 20 16 font-size: 13px; 17 font-weight: normal; 18 margin-top: 10px; 19 margin-bottom: 0; 20 text-align: center; 21 21 } 22 22 23 23 .fa-2x { 24 25 26 27 24 margin: 0 auto; 25 float: none; 26 display: table; 27 color: #4ad1e5; 28 28 } -
Farmatiko/ClientApp/src/app/korona/korona.component.spec.ts
r96108d8 ra8ccc2c 9 9 beforeEach(async(() => { 10 10 TestBed.configureTestingModule({ 11 declarations: [ KoronaComponent]11 declarations: [KoronaComponent] 12 12 }) 13 .compileComponents();13 .compileComponents(); 14 14 })); 15 15 -
Farmatiko/ClientApp/src/app/models/Medicine.ts
r96108d8 ra8ccc2c 1 1 export class Medicine { 2 3 4 5 6 7 8 2 Name: string; 3 Strength: string; 4 Form: string; 5 WayOfIssuing: string; 6 Manufacturer: string; 7 Price: Float32Array; 8 Packaging: string; 9 9 } -
Farmatiko/Farmatiko.csproj
r96108d8 ra8ccc2c 38 38 </ItemGroup> 39 39 40 <ItemGroup>41 <Folder Include="Services\" />42 </ItemGroup>43 44 40 <Target Name="DebugEnsureNodeEnv" BeforeTargets="Build" Condition=" '$(Configuration)' == 'Debug' And !Exists('$(SpaRoot)node_modules') "> 45 41 <!-- Ensure Node.js is installed --> -
Farmatiko/appsettings.json
r96108d8 ra8ccc2c 1 1 { 2 2 "ConnectionStrings": { 3 "FarmatikoConnection": " User ID=postgres;Password=@@Farmatiko@@.;database=FarmatikoDb;Integrated Security=true; Pooling=true;"3 "FarmatikoConnection": "Host=localhost;User ID=postgres;Password=@@Postgres@@.;database=FarmatikoDb;Integrated Security=true; Pooling=true;" 4 4 }, 5 5 "Logging": {
Note:
See TracChangeset
for help on using the changeset viewer.