Skip to content

Commit

Permalink
Template cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Jun 21, 2021
1 parent 09d6b46 commit 2a2f46c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 86 deletions.
55 changes: 0 additions & 55 deletions .github/workflows/template-cleanup.yml

This file was deleted.

24 changes: 0 additions & 24 deletions LICENSE

This file was deleted.

7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,9 @@ Once you have created a repository from this template and the `Template cleanup`
Note that it is easiest to push to a repository if you set up SSH with Github, please see the [related documentation](https://docs.github.com/en/free-pro-team@latest/github/authenticating-to-github/connecting-to-github-with-ssh). SSH is required for pushing to a Github repository when using two-factor authentication.

```sh
git clone [email protected]:%REPOSITORY%.git
cd %NAME%
git clone [email protected]:schwarz-em/rtl-visualization.git
cd rtl-visualization
```
(The variables wrapped in `%` will be filled in by the template cleanup) <!-- #REMOVE-ON-CLEANUP# -->

#### Set project organization and name in build.sbt

Expand All @@ -62,7 +61,7 @@ For more information about a license, check out the [Github Docs](https://docs.g

#### Commit your changes
```sh
git commit -m 'Starting %NAME%'
git commit -m 'Starting rtl-visualization'
git push origin main
```

Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

ThisBuild / scalaVersion := "2.12.13"
ThisBuild / version := "0.1.0"
ThisBuild / organization := "%ORGANIZATION%"
ThisBuild / organization := "com.github.schwarzem"

lazy val root = (project in file("."))
.settings(
name := "%NAME%",
name := "rtl-visualization",
libraryDependencies ++= Seq(
"edu.berkeley.cs" %% "chisel3" % "3.4.3",
"edu.berkeley.cs" %% "chiseltest" % "0.3.3" % "test"
Expand Down
2 changes: 1 addition & 1 deletion build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import scalalib._
// support BSP
import mill.bsp._

object %NAME% extends SbtModule { m =>
object rtl-visualization extends SbtModule { m =>
override def millSourcePath = os.pwd
override def scalaVersion = "2.12.13"
override def scalacOptions = Seq(
Expand Down

0 comments on commit 2a2f46c

Please sign in to comment.