varius official platform source code.
Revision | 6b012692847da995eaeb27b9c901701397768d3c (tree) |
---|---|
Time | 2023-03-24 18:59:00 |
Author | NknightA <n.knight.pc0627@gmai...> |
Commiter | NknightA |
update
@@ -1 +1,2 @@ | ||
1 | 1 | .idea/ |
2 | +node_module/ |
@@ -1,5 +0,0 @@ | ||
1 | -# デフォルトの無視対象ファイル | |
2 | -/shelf/ | |
3 | -/workspace.xml | |
4 | -# エディターベースの HTTP クライアントリクエスト | |
5 | -/httpRequests/ |
@@ -1,12 +0,0 @@ | ||
1 | -<?xml version="1.0" encoding="UTF-8"?> | |
2 | -<module type="WEB_MODULE" version="4"> | |
3 | - <component name="NewModuleRootManager"> | |
4 | - <content url="file://$MODULE_DIR$"> | |
5 | - <excludeFolder url="file://$MODULE_DIR$/temp" /> | |
6 | - <excludeFolder url="file://$MODULE_DIR$/.tmp" /> | |
7 | - <excludeFolder url="file://$MODULE_DIR$/tmp" /> | |
8 | - </content> | |
9 | - <orderEntry type="inheritedJdk" /> | |
10 | - <orderEntry type="sourceFolder" forTests="false" /> | |
11 | - </component> | |
12 | -</module> | |
\ No newline at end of file |
@@ -1,8 +0,0 @@ | ||
1 | -<?xml version="1.0" encoding="UTF-8"?> | |
2 | -<project version="4"> | |
3 | - <component name="ProjectModuleManager"> | |
4 | - <modules> | |
5 | - <module fileurl="file://$PROJECT_DIR$/.idea/V.iml" filepath="$PROJECT_DIR$/.idea/V.iml" /> | |
6 | - </modules> | |
7 | - </component> | |
8 | -</project> | |
\ No newline at end of file |
@@ -1,6 +0,0 @@ | ||
1 | -<?xml version="1.0" encoding="UTF-8"?> | |
2 | -<project version="4"> | |
3 | - <component name="VcsDirectoryMappings"> | |
4 | - <mapping directory="" vcs="Git" /> | |
5 | - </component> | |
6 | -</project> | |
\ No newline at end of file |
@@ -1,25 +0,0 @@ | ||
1 | -<?xml version="1.0" encoding="UTF-8"?> | |
2 | -<project version="4"> | |
3 | - <component name="ProjectTasksOptions"> | |
4 | - <TaskOptions isEnabled="false"> | |
5 | - <option name="arguments" value="$FileName$:$FileNameWithoutExtension$.css" /> | |
6 | - <option name="checkSyntaxErrors" value="true" /> | |
7 | - <option name="description" /> | |
8 | - <option name="exitCodeBehavior" value="ERROR" /> | |
9 | - <option name="fileExtension" value="sass" /> | |
10 | - <option name="immediateSync" value="true" /> | |
11 | - <option name="name" value="Sass" /> | |
12 | - <option name="output" value="$FileNameWithoutExtension$.css:$FileNameWithoutExtension$.css.map" /> | |
13 | - <option name="outputFilters"> | |
14 | - <array /> | |
15 | - </option> | |
16 | - <option name="outputFromStdout" value="false" /> | |
17 | - <option name="program" value="sass" /> | |
18 | - <option name="runOnExternalChanges" value="true" /> | |
19 | - <option name="scopeName" value="Project Files" /> | |
20 | - <option name="trackOnlyRoot" value="true" /> | |
21 | - <option name="workingDir" value="$FileDir$" /> | |
22 | - <envs /> | |
23 | - </TaskOptions> | |
24 | - </component> | |
25 | -</project> | |
\ No newline at end of file |
@@ -1,5 +0,0 @@ | ||
1 | -@types/express @types/node @types/react @types/react-dom | |
2 | - | |
3 | -eslint eslint-config-next | |
4 | - | |
5 | -next react react-dom typescript | |
\ No newline at end of file |
@@ -1,3 +0,0 @@ | ||
1 | -not copy .git dir. | |
2 | - | |
3 | -next step create DB connection codes, 404 page, and UserAccunt creating page. |
@@ -0,0 +1,36 @@ | ||
1 | +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | |
2 | + | |
3 | +# dependencies | |
4 | +/node_modules | |
5 | +/.pnp | |
6 | +.pnp.js | |
7 | + | |
8 | +# testing | |
9 | +/coverage | |
10 | + | |
11 | +# next.js | |
12 | +/.next/ | |
13 | +/out/ | |
14 | + | |
15 | +# production | |
16 | +/build | |
17 | + | |
18 | +# misc | |
19 | +.DS_Store | |
20 | +*.pem | |
21 | + | |
22 | +# debug | |
23 | +npm-debug.log* | |
24 | +yarn-debug.log* | |
25 | +yarn-error.log* | |
26 | +.pnpm-debug.log* | |
27 | + | |
28 | +# local env files | |
29 | +.env*.local | |
30 | + | |
31 | +# vercel | |
32 | +.vercel | |
33 | + | |
34 | +# typescript | |
35 | +*.tsbuildinfo | |
36 | +next-env.d.ts |
@@ -0,0 +1,12 @@ | ||
1 | +module.exports = { | |
2 | + "stories": [ | |
3 | + "../stories/**/*.stories.mdx", | |
4 | + "../stories/**/*.stories.@(js|jsx|ts|tsx)" | |
5 | + ], | |
6 | + "addons": [ | |
7 | + "@storybook/addon-links", | |
8 | + "@storybook/addon-essentials", | |
9 | + "@storybook/addon-interactions" | |
10 | + ], | |
11 | + "framework": "@storybook/react" | |
12 | +} | |
\ No newline at end of file |
@@ -0,0 +1,9 @@ | ||
1 | +export const parameters = { | |
2 | + actions: { argTypesRegex: "^on[A-Z].*" }, | |
3 | + controls: { | |
4 | + matchers: { | |
5 | + color: /(background|color)$/i, | |
6 | + date: /Date$/, | |
7 | + }, | |
8 | + }, | |
9 | +} | |
\ No newline at end of file |
@@ -1 +0,0 @@ | ||
1 | -.idea/ |
@@ -1,16 +0,0 @@ | ||
1 | - | |
2 | -Microsoft Visual Studio Solution File, Format Version 12.00 | |
3 | -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "vv", "vv\vv.csproj", "{8A92DEE8-AAC9-470C-B6A4-6A10985EAB25}" | |
4 | -EndProject | |
5 | -Global | |
6 | - GlobalSection(SolutionConfigurationPlatforms) = preSolution | |
7 | - Debug|Any CPU = Debug|Any CPU | |
8 | - Release|Any CPU = Release|Any CPU | |
9 | - EndGlobalSection | |
10 | - GlobalSection(ProjectConfigurationPlatforms) = postSolution | |
11 | - {8A92DEE8-AAC9-470C-B6A4-6A10985EAB25}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | |
12 | - {8A92DEE8-AAC9-470C-B6A4-6A10985EAB25}.Debug|Any CPU.Build.0 = Debug|Any CPU | |
13 | - {8A92DEE8-AAC9-470C-B6A4-6A10985EAB25}.Release|Any CPU.ActiveCfg = Release|Any CPU | |
14 | - {8A92DEE8-AAC9-470C-B6A4-6A10985EAB25}.Release|Any CPU.Build.0 = Release|Any CPU | |
15 | - EndGlobalSection | |
16 | -EndGlobal |
@@ -1,17 +0,0 @@ | ||
1 | -using System; | |
2 | -using vv.lib; | |
3 | - | |
4 | -namespace vv | |
5 | -{ | |
6 | - internal class Program | |
7 | - { | |
8 | - public static void Main(string[] args) | |
9 | - { | |
10 | - // test Csharp... \(^ _ ^ )/\(~ _ ~ )/ | |
11 | - String aa = Console.ReadLine(); | |
12 | - Console.WriteLine(aa); | |
13 | - int b = Int32.Parse(aa); | |
14 | - Console.WriteLine(b); | |
15 | - } | |
16 | - } | |
17 | -} | |
\ No newline at end of file |
@@ -1,35 +0,0 @@ | ||
1 | -using System.Reflection; | |
2 | -using System.Runtime.InteropServices; | |
3 | - | |
4 | -// General Information about an assembly is controlled through the following | |
5 | -// set of attributes. Change these attribute values to modify the information | |
6 | -// associated with an assembly. | |
7 | -[assembly: AssemblyTitle("vv")] | |
8 | -[assembly: AssemblyDescription("")] | |
9 | -[assembly: AssemblyConfiguration("")] | |
10 | -[assembly: AssemblyCompany("")] | |
11 | -[assembly: AssemblyProduct("vv")] | |
12 | -[assembly: AssemblyCopyright("Copyright © 2023")] | |
13 | -[assembly: AssemblyTrademark("")] | |
14 | -[assembly: AssemblyCulture("")] | |
15 | - | |
16 | -// Setting ComVisible to false makes the types in this assembly not visible | |
17 | -// to COM components. If you need to access a type in this assembly from | |
18 | -// COM, set the ComVisible attribute to true on that type. | |
19 | -[assembly: ComVisible(false)] | |
20 | - | |
21 | -// The following GUID is for the ID of the typelib if this project is exposed to COM | |
22 | -[assembly: Guid("8A92DEE8-AAC9-470C-B6A4-6A10985EAB25")] | |
23 | - | |
24 | -// Version information for an assembly consists of the following four values: | |
25 | -// | |
26 | -// Major Version | |
27 | -// Minor Version | |
28 | -// Build Number | |
29 | -// Revision | |
30 | -// | |
31 | -// You can specify all the values or you can default the Build and Revision Numbers | |
32 | -// by using the '*' as shown below: | |
33 | -// [assembly: AssemblyVersion("1.0.*")] | |
34 | -[assembly: AssemblyVersion("1.0.0.0")] | |
35 | -[assembly: AssemblyFileVersion("1.0.0.0")] | |
\ No newline at end of file |
@@ -1,13 +0,0 @@ | ||
1 | -using System; | |
2 | - | |
3 | -namespace vv.lib | |
4 | -{ | |
5 | - public class index | |
6 | - { | |
7 | - public void intdexString() | |
8 | - { | |
9 | - int a = 22; | |
10 | - | |
11 | - } | |
12 | - } | |
13 | -} | |
\ No newline at end of file |
@@ -1 +0,0 @@ | ||
1 | -27791e2f20efd613ed1989b215f0be179f487d97 |
@@ -1,7 +0,0 @@ | ||
1 | -C:\Users\nknig\RiderProjects\vv\vv\bin\Debug\vv.exe | |
2 | -C:\Users\nknig\RiderProjects\vv\vv\bin\Debug\vv.pdb | |
3 | -C:\Users\nknig\RiderProjects\vv\vv\obj\Debug\vv.csproj.AssemblyReference.cache | |
4 | -C:\Users\nknig\RiderProjects\vv\vv\obj\Debug\vv.csproj.SuggestedBindingRedirects.cache | |
5 | -C:\Users\nknig\RiderProjects\vv\vv\obj\Debug\vv.csproj.CoreCompileInputs.cache | |
6 | -C:\Users\nknig\RiderProjects\vv\vv\obj\Debug\vv.exe | |
7 | -C:\Users\nknig\RiderProjects\vv\vv\obj\Debug\vv.pdb |
@@ -1,55 +0,0 @@ | ||
1 | -<?xml version="1.0" encoding="utf-8"?> | |
2 | -<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
3 | - <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> | |
4 | - <PropertyGroup> | |
5 | - <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | |
6 | - <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | |
7 | - <ProjectGuid>{8A92DEE8-AAC9-470C-B6A4-6A10985EAB25}</ProjectGuid> | |
8 | - <OutputType>Exe</OutputType> | |
9 | - <AppDesignerFolder>Properties</AppDesignerFolder> | |
10 | - <RootNamespace>vv</RootNamespace> | |
11 | - <AssemblyName>vv</AssemblyName> | |
12 | - <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> | |
13 | - <FileAlignment>512</FileAlignment> | |
14 | - <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> | |
15 | - </PropertyGroup> | |
16 | - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | |
17 | - <PlatformTarget>AnyCPU</PlatformTarget> | |
18 | - <DebugSymbols>true</DebugSymbols> | |
19 | - <DebugType>full</DebugType> | |
20 | - <Optimize>false</Optimize> | |
21 | - <OutputPath>bin\Debug\</OutputPath> | |
22 | - <DefineConstants>DEBUG;TRACE</DefineConstants> | |
23 | - <ErrorReport>prompt</ErrorReport> | |
24 | - <WarningLevel>4</WarningLevel> | |
25 | - </PropertyGroup> | |
26 | - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | |
27 | - <PlatformTarget>AnyCPU</PlatformTarget> | |
28 | - <DebugType>pdbonly</DebugType> | |
29 | - <Optimize>true</Optimize> | |
30 | - <OutputPath>bin\Release\</OutputPath> | |
31 | - <DefineConstants>TRACE</DefineConstants> | |
32 | - <ErrorReport>prompt</ErrorReport> | |
33 | - <WarningLevel>4</WarningLevel> | |
34 | - </PropertyGroup> | |
35 | - <ItemGroup> | |
36 | - <Reference Include="System" /> | |
37 | - <Reference Include="System.Core" /> | |
38 | - <Reference Include="System.Data" /> | |
39 | - <Reference Include="System.Xml" /> | |
40 | - </ItemGroup> | |
41 | - <ItemGroup> | |
42 | - <Compile Include="lib\index.cs" /> | |
43 | - <Compile Include="Program.cs" /> | |
44 | - <Compile Include="Properties\AssemblyInfo.cs" /> | |
45 | - </ItemGroup> | |
46 | - <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | |
47 | - <!-- To modify your build process, add your task inside one of the targets below and uncomment it. | |
48 | - Other similar extension points exist, see Microsoft.Common.targets. | |
49 | - <Target Name="BeforeBuild"> | |
50 | - </Target> | |
51 | - <Target Name="AfterBuild"> | |
52 | - </Target> | |
53 | - --> | |
54 | - | |
55 | -</Project> |